aboutsummaryrefslogtreecommitdiff
path: root/tests/behat/edit.feature
blob: 87a2a54ef0d54851a1046d34a534dc9a58ca5974 (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: Test editing an Algebra question
  As a teacher
  In order to be able to update my Algebra question
  I need to edit them

  Background:
    Given the following "users" exist:
      | username | firstname | lastname | email                |
      | teacher1 | T1        | Teacher1 | teacher1@example.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 for editing | simplemath |
    And I log in as "teacher1"
    And I am on "Course 1" course homepage
    And I navigate to "Question bank" node in "Course administration"

  @javascript @_switch_window
  Scenario: Edit an Algebra question
    When I click on "Edit" "link" in the "algebra-001 for editing" "table_row"
    And I set the following fields to these values:
      | Question name | |
    And I press "id_submitbutton"
    Then I should see "You must supply a value here."
    When I set the following fields to these values:
      | Question name | Edited algebra-001 name |
    And I press "id_submitbutton"
    Then I should see "Edited algebra-001 name"
    When I click on "Edit" "link" in the "Edited algebra-001 name" "table_row"
    And I set the following fields to these values:
      | id_answer_1          | 6*x                        |
      | id_fraction_1        | 10%                        |
      | id_feedback_1        | 3x + 4x gives 7x not 6x.   |
    And I press "id_submitbutton"
    Then I should see "Edited algebra-001 name"
    When I click on "Preview" "link" in the "Edited algebra-001 name" "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='qtext']//input[contains(@id, '1_answer')]" to "6*x"
    And I press "Check"
    Then I should see "3x + 4x gives 7x not 6x."
    And I should see "Generalfeedback: (P + Q)(x) = 7x."
    And I should see "The correct answer is: 7*x"