MDL-57314 behat: Press enter after setting password unmask
[moodle.git] / lib / behat / form_field / behat_form_passwordunmask.php
blobaef507c02d1ebe2a0b500ea143173f0f493ee8ef
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.
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/>.
17 /**
18 * Silly behat_form_select extension.
20 * @package core_form
21 * @category test
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');
32 /**
33 * Allows interaction with passwordunmask form fields.
35 * Plain behat_form_select extension as it is the same
36 * kind of field.
38 * @package core_form
39 * @category test
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 {
44 /**
45 * Sets the value to a field.
47 * @param string $value
48 * @return void
50 public function set_value($value) {
51 if ($this->running_javascript()) {
52 $id = $this->field->getAttribute('id');
53 $js = <<<JS
54 require(["jquery"], function($) {
55 var wrapper = $(document.getElementById("{$id}")).closest('[data-passwordunmask="wrapper"]');
56 wrapper.find('[data-passwordunmask="edit"]').trigger("click");
57 });
58 JS;
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);