Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
@core @core_courseFeature: Courses can be searched for and moved in bulk.In order to manage a large number of coursesAs a Moodle AdministratorI need to be able to search courses in bulk and move them aroundBackground:Given the following "categories" exist:| name | category | idnumber || Science | 0 | SCI || English | 0 | ENG || Miscellaneous | 0 | MISC |And the following "courses" exist:| fullname | shortname | category || Biology Y1 | BIO1 | MISC || Biology Y2 | BIO2 | MISC || English Y1 | ENG1 | ENG || English Y2 | ENG2 | MISC |Scenario: Search courses finds correct resultsGiven I log in as "admin"And I go to the courses management pageWhen I set the field "Search" to "Biology"And I press "Search"Then I should see "Biology Y1"And I should see "Biology Y2"And I should not see "English Y1"And I should not see "English Y2"@javascriptScenario: Search courses and move results in bulkGiven I log in as "admin"And I go to the courses management pageAnd I set the field "Search" to "Biology"And I press "Search"When I select course "Biology Y1" in the management interfaceAnd I select course "Biology Y2" in the management interfaceAnd I set the field "menumovecoursesto" to "Science"And I press "Move"Then I should see "Successfully moved 2 courses into Science"And I wait to be redirectedAnd I click on category "Science" in the management interfaceAnd I should see "Biology Y1"And I should see "Biology Y2"