HEX
Server: LiteSpeed
System: Linux server.zepintelhosting.com 4.18.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User: enamadmin (1026)
PHP: 8.2.30
Disabled: exec,system,passthru,shell_exec,proc_open,popen,apache_child_terminate
Upload Files
File: /home/enamadmin/www/elearning_plateforme1/course/tests/behat/search_recommended_activities.feature
@core @core_course
Feature: Search recommended activities
  As an admin I am able to search for activities in the "Recommended activities" admin setting page

  Scenario: Search results are returned if the search query matches any activity names
    Given I log in as "admin"
    And I am on site homepage
    And I navigate to "Courses > Activity chooser > Recommended activities" in site administration
    When I set the field "search" to "assign"
    And I click on "Submit search" "button"
    Then I should see "Search results"
    And "Assignment" "table_row" should exist
    And "Book" "table_row" should not exist

  Scenario: Search results are not returned if the search query does not match with any activity names
    Given I log in as "admin"
    And I am on site homepage
    And I navigate to "Courses > Activity chooser > Recommended activities" in site administration
    When I set the field "search" to "random query"
    And I click on "Submit search" "button"
    Then I should see "Search results: 0"