Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
@qtype @qtype_ddimageortext
2
Feature: Test exporting drag and drop onto image questions
3
  As a teacher
4
  In order to be able to reuse my drag and drop onto image questions
5
  I need to export them
6
 
7
  Background:
8
    Given the following "users" exist:
9
      | username |
10
      | teacher  |
11
    And the following "courses" exist:
12
      | fullname | shortname | category |
13
      | Course 1 | C1        | 0        |
14
    And the following "course enrolments" exist:
15
      | user    | course | role           |
16
      | teacher | C1     | editingteacher |
17
    And the following "question categories" exist:
18
      | contextlevel | reference | name           |
19
      | Course       | C1        | Test questions |
20
    And the following "questions" exist:
21
      | questioncategory | qtype         | name            | template |
22
      | Test questions   | ddimageortext | Drag onto image | xsection |
23
 
24
  @javascript
25
  Scenario: Export a drag and drop onto image question
26
    When I am on the "Course 1" "core_question > course question export" page logged in as teacher
27
    And I set the field "id_format_xml" to "1"
28
    And I press "Export questions to file"
29
    Then following "click here" should download between "18600" and "19150" bytes
30
    # If the download step is the last in the scenario then we can sometimes run
31
    # into the situation where the download page causes a http redirect but behat
32
    # has already conducted its reset (generating an error). By putting a logout
33
    # step we avoid behat doing the reset until we are off that page.
34
    And I log out