| Server IP : 172.67.187.206 / Your IP : 172.71.28.156 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Inetpub/www/myschool/triamudom/tuprblearn/question/tests/behat/ |
Upload File : |
@core @core_question
Feature: The questions in the question bank can be selected in various ways
In selected to do something for questions
As a teacher
I want to choose them to move, delete it.
Background:
Given the following "users" exist:
| username | firstname | lastname | email |
| teacher1 | Teacher | 1 | [email protected] |
And the following "courses" exist:
| fullname | shortname | format |
| Course 1 | C1 | weeks |
And the following "course enrolments" exist:
| user | course | role |
| teacher1 | C1 | editingteacher |
And the following "question categories" exist:
| contextlevel | reference | name |
| Course | C1 | Test questions |
And the following "questions" exist:
| questioncategory | qtype | name | user | questiontext |
| Test questions | essay | A question 1 name | admin | Question 1 text |
| Test questions | essay | B question 2 name | teacher1 | Question 2 text |
| Test questions | numerical | C question 3 name | teacher1 | Question 3 text |
And I log in as "teacher1"
And I am on "Course 1" course homepage
And I navigate to "Question bank > Questions" in current page administration
@javascript
Scenario: The question text can be chosen all in the list of questions
Given the field "Select all" matches value ""
When I click on "Select all" "checkbox"
And the field "A question 1 name" matches value "1"
And the field "B question 2 name" matches value "1"
And the field "C question 3 name" matches value "1"
Then I click on "Deselect all" "checkbox"
And the field "A question 1 name" matches value ""
And the field "B question 2 name" matches value ""
And the field "C question 3 name" matches value ""
@javascript
Scenario: The question text can be chosen in the list of questions
Given the field "Select all" matches value ""
When I click on "A question 1 name" "checkbox"
Then the field "Select all" matches value ""
And I click on "B question 2 name" "checkbox"
And I click on "C question 3 name" "checkbox"
And the field "Deselect all" matches value "1"
@javascript
Scenario: The action button can be disabled when the question not be chosen in the list of questions
Given the "Delete" "button" should be disabled
And the "Move to >>" "button" should be disabled
When I click on "Select all" "checkbox"
Then the "Delete" "button" should be enabled
And the "Move to >>" "button" should be enabled