Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.
   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   4  // Moodle is free software: you can redistribute it and/or modify
   5  // it under the terms of the GNU General Public License as published by
   6  // the Free Software Foundation, either version 3 of the License, or
   7  // (at your option) any later version.
   8  //
   9  // Moodle is distributed in the hope that it will be useful,
  10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  // GNU General Public License for more details.
  13  //
  14  // You should have received a copy of the GNU General Public License
  15  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  /**
  18   * Step definitions related to mod_quiz overrides for the Classic theme.
  19   *
  20   * @package    theme_classic
  21   * @category   test
  22   * @copyright  2019 Michael Hawkins
  23   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   */
  25  
  26  // NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
  27  
  28  require_once (__DIR__ . '/../../../../mod/quiz/tests/behat/behat_mod_quiz.php');
  29  
  30  use Behat\Gherkin\Node\TableNode as TableNode;
  31  
  32  /**
  33   * Step definitions related to mod_quiz overrides for the Classic theme.
  34   *
  35   * @package    theme_classic
  36   * @category   test
  37   * @copyright  2019 Michael Hawkins
  38   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  39   */
  40  class behat_theme_classic_behat_mod_quiz extends behat_mod_quiz {
  41  
  42      /**
  43       * Adds a question to the existing quiz with filling the form.
  44       * The form for creating a question should be on one page.
  45       *
  46       * @param string $questiontype
  47       * @param string $quizname
  48       * @param TableNode $questiondata with data for filling the add question form
  49       */
  50      public function i_add_question_to_the_quiz_with($questiontype, $quizname, TableNode $questiondata) {
  51          $quizname = $this->escape($quizname);
  52          $editquiz = $this->escape(get_string('editquiz', 'quiz'));
  53          $menuxpath = "//div[contains(@class, ' page-add-actions ')][last()]//a[contains(@class, ' dropdown-toggle')]";
  54          $itemxpath = "//div[contains(@class, ' page-add-actions ')][last()]//a[contains(@class, ' addquestion ')]";
  55  
  56          $this->execute('behat_general::click_link', $quizname);
  57  
  58          $this->execute("behat_navigation::i_navigate_to_in_current_page_administration", $editquiz);
  59  
  60          $this->execute("behat_general::i_click_on", array($menuxpath, "xpath_element"));
  61          $this->execute("behat_general::i_click_on", array($itemxpath, "xpath_element"));
  62  
  63          $this->finish_adding_question($questiontype, $questiondata);
  64      }
  65  }