1 |
efrain |
1 |
@qbank @qbank_previewquestion
|
|
|
2 |
Feature: Use the qbank plugin manager page for previewquestion
|
|
|
3 |
In order to check the plugin behaviour with enable and disable
|
|
|
4 |
|
|
|
5 |
Background:
|
|
|
6 |
Given the following "courses" exist:
|
|
|
7 |
| fullname | shortname | category |
|
|
|
8 |
| Course 1 | C1 | 0 |
|
|
|
9 |
And the following "activities" exist:
|
|
|
10 |
| activity | name | course | idnumber |
|
|
|
11 |
| quiz | Test quiz | C1 | quiz1 |
|
|
|
12 |
And the following "question categories" exist:
|
|
|
13 |
| contextlevel | reference | name |
|
|
|
14 |
| Course | C1 | Test questions |
|
|
|
15 |
And the following "questions" exist:
|
|
|
16 |
| questioncategory | qtype | name | questiontext |
|
|
|
17 |
| Test questions | truefalse | First question | Answer the first question |
|
|
|
18 |
|
|
|
19 |
Scenario: Enable/disable previewquestion column from the base view
|
|
|
20 |
Given I log in as "admin"
|
|
|
21 |
When I navigate to "Plugins > Question bank plugins > Manage question bank plugins" in site administration
|
|
|
22 |
And I should see "Preview question"
|
|
|
23 |
And I click on "Disable" "link" in the "Preview question" "table_row"
|
|
|
24 |
And I am on the "Test quiz" "mod_quiz > question bank" page
|
|
|
25 |
Then the "Preview" item should not exist in the "Edit" action menu of the "First question" "table_row"
|
|
|
26 |
And I navigate to "Plugins > Question bank plugins > Manage question bank plugins" in site administration
|
|
|
27 |
And I click on "Enable" "link" in the "Preview question" "table_row"
|
|
|
28 |
And I am on the "Test quiz" "mod_quiz > question bank" page
|
|
|
29 |
And the "Preview" item should exist in the "Edit" action menu of the "First question" "table_row"
|
|
|
30 |
|
|
|
31 |
Scenario: Enable/disable preview button from question edit form
|
|
|
32 |
Given I log in as "admin"
|
|
|
33 |
When I navigate to "Plugins > Question bank plugins > Manage question bank plugins" in site administration
|
|
|
34 |
And I should see "Preview question"
|
|
|
35 |
And I click on "Disable" "link" in the "Preview question" "table_row"
|
|
|
36 |
And I am on the "Test quiz" "mod_quiz > question bank" page
|
|
|
37 |
And I choose "Edit question" action for "First question" in the question bank
|
|
|
38 |
Then I should not see "Preview" in the "region-main" "region"
|
|
|
39 |
And I navigate to "Plugins > Question bank plugins > Manage question bank plugins" in site administration
|
|
|
40 |
And I click on "Enable" "link" in the "Preview question" "table_row"
|
|
|
41 |
And I am on the "Test quiz" "mod_quiz > question bank" page
|
|
|
42 |
And I choose "Edit question" action for "First question" in the question bank
|
|
|
43 |
And I should see "Preview" in the "region-main" "region"
|