@qformat @qformat_gift Feature: Test importing questions from GIFT format. In order to reuse questions As an teacher I need to be able to import them in GIFT format. Background: Given the following "courses" exist: | fullname | shortname | format | | Course 1 | C1 | topics | And the following "users" exist: | username | firstname | | teacher | Teacher | And the following "course enrolments" exist: | user | course | role | | teacher | C1 | editingteacher | And I log in as "teacher" And I follow "Course 1" @javascript @_file_upload Scenario: import some GIFT questions When I navigate to "Import" node in "Course administration > Question bank" And I set the field "id_format_gift" to "1" And I upload "question/format/gift/tests/fixtures/questions.gift.txt" file to "Import" filemanager And I press "id_submitbutton" Then I should see "Parsing questions from import file." And I should see "Importing 9 questions from file" And I should see "What's between orange and green in the spectrum?" When I press "Continue" Then I should see "colours" # Now export again. And I navigate to "Export" node in "Course administration > Question bank" And I set the field "id_format_gift" to "1" And I press "Export questions to file" And following "click here" should download between "1550" and "1650" bytes # If the download step is the last in the scenario then we can sometimes run # into the situation where the download page causes a http redirect but behat # has already conducted its reset (generating an error). By putting a logout # step we avoid behat doing the reset until we are off that page. And I log out