MDL-74211 behat: replace steps to use new categories page type

This commit is contained in:
Simey Lameze
2022-07-29 13:24:44 +08:00
parent 1ff7beef8f
commit 017f8ff6bf
2 changed files with 9 additions and 9 deletions
@@ -21,8 +21,8 @@ Feature: A teacher can move question categories in the question bank
And I am on "Course 1" course homepage
Scenario: A question category can be moved to another context
When I follow "Test quiz"
And I navigate to "Question bank > Categories" in current page administration
When I am on the "Course 1" "core_question > course question categories" page
And I follow "Add category"
And I set the following fields to these values:
| Name | Test category |
| Parent category | Top for Test quiz |
@@ -31,8 +31,8 @@ Feature: A teacher can move question categories in the question bank
Then I should see "Test category" in the "//div[contains(concat(' ', normalize-space(@class), ' '), ' questioncategories ') and contains(concat(' ', normalize-space(@class), ' '), ' contextlevel50 ')]" "xpath_element"
Scenario: A question category can be moved to top level
When I follow "Test quiz"
And I navigate to "Question bank > Categories" in current page administration
When I am on the "Course 1" "core_question > course question categories" page
And I follow "Add category"
And I set the following fields to these values:
| Name | Test category |
| Parent category | Default for Test quiz |
@@ -24,10 +24,9 @@ Feature: A teacher can put questions in categories in the question bank
| questioncategory | qtype | name | questiontext |
| Used category | essay | Test question to be moved | Write about whatever you want |
And I log in as "teacher1"
And I am on "Course 1" course homepage
Scenario: A new question category can be created
When I navigate to "Question bank > Categories" in current page administration
When I am on the "Course 1" "core_question > course question categories" page
And I set the following fields to these values:
| Name | New Category 1 |
| Parent category | Top |
@@ -39,7 +38,7 @@ Feature: A teacher can put questions in categories in the question bank
And "New Category 1 [newcatidnumber]" "option" should exist in the "Parent category" "select"
Scenario: A question category can be edited
When I navigate to "Question bank > Categories" in current page administration
When I am on the "Course 1" "core_question > course question categories" page
And I click on "Edit this category" "link" in the "Subcategory" "list_item"
And the field "parent" matches value "   Default for C1"
And I set the following fields to these values:
@@ -50,12 +49,12 @@ Feature: A teacher can put questions in categories in the question bank
And I should see "I was edited" in the "New name" "list_item"
Scenario: An empty question category can be deleted
When I navigate to "Question bank > Categories" in current page administration
When I am on the "Course 1" "core_question > course question categories" page
And I click on "Delete" "link" in the "Subcategory" "list_item"
Then I should not see "Subcategory"
Scenario: An non-empty question category can be deleted if you move the contents elsewhere
When I navigate to "Question bank > Categories" in current page administration
When I am on the "Course 1" "core_question > course question categories" page
And I click on "Delete" "link" in the "Used category" "list_item"
And I should see "The category 'Used category' contains 1 questions"
And I press "Save in category"
@@ -86,3 +85,4 @@ Feature: A teacher can put questions in categories in the question bank
And the field "Select a category" matches value "      Subcategory (1)"
And the "Select a category" select box should contain "Used category"
And the "Select a category" select box should not contain "Used category (1)"