blob: b287e99893bddf6f628ed78a559e09602d7c0706 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
@qtype @qtype_algebra
Feature: Preview an Algebra question
As a teacher
In order to check my Algebra questions will work for students
I need to preview them
Background:
Given the following "users" exist:
| username | firstname | lastname | email |
| teacher1 | T1 | Teacher1 | teacher1@moodle.com |
And the following "courses" exist:
| fullname | shortname | category |
| Course 1 | C1 | 0 |
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 | template |
| Test questions | algebra | algebra-001 | simplemath |
Given I log in as "teacher1"
And I am on "Course 1" course homepage
And I navigate to "Question bank" in current page administration
@javascript @_switch_window
Scenario: Preview an Algebra question with correct answer
When I click on "Preview" "link" in the "algebra-001" "table_row"
And I switch to "questionpreview" window
Then I should see "P(x) = 3x and Q(x) = 4x. Calculate (P + Q)(x)"
# Set behaviour options
And I set the following fields to these values:
| behaviour | immediatefeedback |
And I press "Start again with these options"
And I set the field with xpath "//div[@class='answer']//input[contains(@id, '1_answer')]" to "7*x"
And I press "Check"
Then I should see "This is a very good answer."
Then I should see "Mark 1.00 out of 1.00"
And I should see "Generalfeedback: (P + Q)(x) = 7x."
And I should see "The correct answer is: 7*x"
@javascript @_switch_window
Scenario: Preview an Algebra question with incorrect answer
When I click on "Preview" "link" in the "algebra-001" "table_row"
And I switch to "questionpreview" window
Then I should see "P(x) = 3x and Q(x) = 4x. Calculate (P + Q)(x)"
# Set behaviour options
And I set the following fields to these values:
| behaviour | immediatefeedback |
And I press "Start again with these options"
And I set the field with xpath "//div[@class='answer']//input[contains(@id, '1_answer')]" to "6*x"
And I press "Check"
Then I should see "Mark 0.00 out of 1.00"
And I should see "Generalfeedback: (P + Q)(x) = 7x."
And I should see "The correct answer is: 7*x"
|