2 // This file is part of Moodle - http://moodle.org/
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.
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.
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/>.
18 * Silly behat_form_select extension.
22 * @copyright 2013 David MonllaĆ³
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') ||
die();
28 // NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
30 require_once(__DIR__
. '/behat_form_text.php');
33 * Allows interaction with passwordunmask form fields.
35 * Plain behat_form_select extension as it is the same
40 * @copyright 2013 David MonllaĆ³
41 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
43 class behat_form_passwordunmask
extends behat_form_text
{
45 * Sets the value to a field.
47 * @param string $value
50 public function set_value($value) {
51 if ($this->running_javascript()) {
52 $id = $this->field
->getAttribute('id');
54 require(["jquery"], function($) {
55 var wrapper = $(document.getElementById("{$id}")).closest('[data-passwordunmask="wrapper"]');
56 wrapper.find('[data-passwordunmask="edit"]').trigger("click");
59 $this->session
->executeScript($js);
62 $this->field
->setValue($value);
64 // Ensure all pending JS is finished.
65 if ($this->running_javascript()) {
66 // Press enter key after setting password, so we have a stable page.
67 $this->field
->keyDown(13);
68 $this->field
->keyPress(13);
69 $this->field
->keyUp(13);
70 $this->session
->wait(behat_base
::TIMEOUT
* 1000, behat_base
::PAGE_READY_JS
);