MDL-48374 behat: improved page load detection
[moodle.git] / lib / tests / behat / behat_general.php
blobae910a7bdbbbade4dbf10e8a1cd696fa5bf17b86
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 * General use steps definitions.
20 * @package core
21 * @category test
22 * @copyright 2012 David MonllaĆ³
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 // NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
28 require_once(__DIR__ . '/../../behat/behat_base.php');
30 use Behat\Mink\Exception\ExpectationException as ExpectationException,
31 Behat\Mink\Exception\ElementNotFoundException as ElementNotFoundException,
32 Behat\Mink\Exception\DriverException as DriverException,
33 WebDriver\Exception\NoSuchElement as NoSuchElement,
34 WebDriver\Exception\StaleElementReference as StaleElementReference,
35 Behat\Gherkin\Node\TableNode as TableNode,
36 Behat\Behat\Context\Step\Given as Given;
38 /**
39 * Cross component steps definitions.
41 * Basic web application definitions from MinkExtension and
42 * BehatchExtension. Definitions modified according to our needs
43 * when necessary and including only the ones we need to avoid
44 * overlapping and confusion.
46 * @package core
47 * @category test
48 * @copyright 2012 David MonllaĆ³
49 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
51 class behat_general extends behat_base {
53 /**
54 * @var string used by {@link switch_to_window()} and
55 * {@link switch_to_the_main_window()} to work-around a Chrome browser issue.
57 const MAIN_WINDOW_NAME = '__moodle_behat_main_window_name';
59 /**
60 * @var string when we want to check whether or not a new page has loaded,
61 * we first write this unique string into the page. Then later, by checking
62 * whether it is still there, we can tell if a new page has been loaded.
64 const PAGE_LOAD_DETECTION_STRING = 'new_page_not_loaded_since_behat_started_watching';
66 /**
67 * @var $pageloaddetectionrunning boolean Used to ensure that page load detection was started before a page reload
68 * was checked for.
70 private $pageloaddetectionrunning = null;
72 /**
73 * Opens Moodle homepage.
75 * @Given /^I am on homepage$/
77 public function i_am_on_homepage() {
78 $this->getSession()->visit($this->locate_path('/'));
81 /**
82 * Reloads the current page.
84 * @Given /^I reload the page$/
86 public function reload() {
87 $this->getSession()->reload();
90 /**
91 * Follows the page redirection. Use this step after any action that shows a message and waits for a redirection
93 * @Given /^I wait to be redirected$/
95 public function i_wait_to_be_redirected() {
97 // Xpath and processes based on core_renderer::redirect_message(), core_renderer::$metarefreshtag and
98 // moodle_page::$periodicrefreshdelay possible values.
99 if (!$metarefresh = $this->getSession()->getPage()->find('xpath', "//head/descendant::meta[@http-equiv='refresh']")) {
100 // We don't fail the scenario if no redirection with message is found to avoid race condition false failures.
101 return true;
104 // Wrapped in try & catch in case the redirection has already been executed.
105 try {
106 $content = $metarefresh->getAttribute('content');
107 } catch (NoSuchElement $e) {
108 return true;
109 } catch (StaleElementReference $e) {
110 return true;
113 // Getting the refresh time and the url if present.
114 if (strstr($content, 'url') != false) {
116 list($waittime, $url) = explode(';', $content);
118 // Cleaning the URL value.
119 $url = trim(substr($url, strpos($url, 'http')));
121 } else {
122 // Just wait then.
123 $waittime = $content;
127 // Wait until the URL change is executed.
128 if ($this->running_javascript()) {
129 $this->getSession()->wait($waittime * 1000, false);
131 } else if (!empty($url)) {
132 // We redirect directly as we can not wait for an automatic redirection.
133 $this->getSession()->getDriver()->getClient()->request('get', $url);
135 } else {
136 // Reload the page if no URL was provided.
137 $this->getSession()->getDriver()->reload();
142 * Switches to the specified iframe.
144 * @Given /^I switch to "(?P<iframe_name_string>(?:[^"]|\\")*)" iframe$/
145 * @param string $iframename
147 public function switch_to_iframe($iframename) {
149 // We spin to give time to the iframe to be loaded.
150 // Using extended timeout as we don't know about which
151 // kind of iframe will be loaded.
152 $this->spin(
153 function($context, $iframename) {
154 $context->getSession()->switchToIFrame($iframename);
156 // If no exception we are done.
157 return true;
159 $iframename,
160 self::EXTENDED_TIMEOUT
165 * Switches to the main Moodle frame.
167 * @Given /^I switch to the main frame$/
169 public function switch_to_the_main_frame() {
170 $this->getSession()->switchToIFrame();
174 * Switches to the specified window. Useful when interacting with popup windows.
176 * @Given /^I switch to "(?P<window_name_string>(?:[^"]|\\")*)" window$/
177 * @param string $windowname
179 public function switch_to_window($windowname) {
180 // In Behat, some browsers (e.g. Chrome) are unable to switch to a
181 // window without a name, and by default the main browser window does
182 // not have a name. To work-around this, when we switch away from an
183 // unnamed window (presumably the main window) to some other named
184 // window, then we first set the main window name to a conventional
185 // value that we can later use this name to switch back.
186 $this->getSession()->evaluateScript(
187 'if (window.name == "") window.name = "' . self::MAIN_WINDOW_NAME . '"');
189 $this->getSession()->switchToWindow($windowname);
193 * Switches to the main Moodle window. Useful when you finish interacting with popup windows.
195 * @Given /^I switch to the main window$/
197 public function switch_to_the_main_window() {
198 $this->getSession()->switchToWindow(self::MAIN_WINDOW_NAME);
202 * Accepts the currently displayed alert dialog. This step does not work in all the browsers, consider it experimental.
203 * @Given /^I accept the currently displayed dialog$/
205 public function accept_currently_displayed_alert_dialog() {
206 $this->getSession()->getDriver()->getWebDriverSession()->accept_alert();
210 * Clicks link with specified id|title|alt|text.
212 * @When /^I follow "(?P<link_string>(?:[^"]|\\")*)"$/
213 * @throws ElementNotFoundException Thrown by behat_base::find
214 * @param string $link
216 public function click_link($link) {
218 $linknode = $this->find_link($link);
219 $this->ensure_node_is_visible($linknode);
220 $linknode->click();
224 * Waits X seconds. Required after an action that requires data from an AJAX request.
226 * @Then /^I wait "(?P<seconds_number>\d+)" seconds$/
227 * @param int $seconds
229 public function i_wait_seconds($seconds) {
231 if (!$this->running_javascript()) {
232 throw new DriverException('Waits are disabled in scenarios without Javascript support');
235 $this->getSession()->wait($seconds * 1000, false);
239 * Waits until the page is completely loaded. This step is auto-executed after every step.
241 * @Given /^I wait until the page is ready$/
243 public function wait_until_the_page_is_ready() {
245 if (!$this->running_javascript()) {
246 throw new DriverException('Waits are disabled in scenarios without Javascript support');
249 $this->getSession()->wait(self::TIMEOUT * 1000, self::PAGE_READY_JS);
253 * Waits until the provided element selector exists in the DOM
255 * Using the protected method as this method will be usually
256 * called by other methods which are not returning a set of
257 * steps and performs the actions directly, so it would not
258 * be executed if it returns another step.
260 * @Given /^I wait until "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" exists$/
261 * @param string $element
262 * @param string $selector
263 * @return void
265 public function wait_until_exists($element, $selectortype) {
266 $this->ensure_element_exists($element, $selectortype);
270 * Waits until the provided element does not exist in the DOM
272 * Using the protected method as this method will be usually
273 * called by other methods which are not returning a set of
274 * steps and performs the actions directly, so it would not
275 * be executed if it returns another step.
277 * @Given /^I wait until "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" does not exist$/
278 * @param string $element
279 * @param string $selector
280 * @return void
282 public function wait_until_does_not_exists($element, $selectortype) {
283 $this->ensure_element_does_not_exist($element, $selectortype);
287 * Generic mouse over action. Mouse over a element of the specified type.
289 * @When /^I hover "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)"$/
290 * @param string $element Element we look for
291 * @param string $selectortype The type of what we look for
293 public function i_hover($element, $selectortype) {
295 // Gets the node based on the requested selector type and locator.
296 $node = $this->get_selected_node($selectortype, $element);
297 $node->mouseOver();
301 * Generic click action. Click on the element of the specified type.
303 * @When /^I click on "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)"$/
304 * @param string $element Element we look for
305 * @param string $selectortype The type of what we look for
307 public function i_click_on($element, $selectortype) {
309 // Gets the node based on the requested selector type and locator.
310 $node = $this->get_selected_node($selectortype, $element);
311 $this->ensure_node_is_visible($node);
312 $node->click();
316 * Sets the focus and takes away the focus from an element, generating blur JS event.
318 * @When /^I take focus off "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)"$/
319 * @param string $element Element we look for
320 * @param string $selectortype The type of what we look for
322 public function i_take_focus_off_field($element, $selectortype) {
323 if (!$this->running_javascript()) {
324 throw new ExpectationException('Can\'t take focus off from "' . $element . '" in non-js mode', $this->getSession());
326 // Gets the node based on the requested selector type and locator.
327 $node = $this->get_selected_node($selectortype, $element);
328 $this->ensure_node_is_visible($node);
330 // Ensure element is focused before taking it off.
331 $node->focus();
332 $node->blur();
336 * Clicks the specified element and confirms the expected dialogue.
338 * @When /^I click on "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" confirming the dialogue$/
339 * @throws ElementNotFoundException Thrown by behat_base::find
340 * @param string $link
342 public function i_click_on_confirming_the_dialogue($element, $selectortype) {
343 $this->i_click_on($element, $selectortype);
344 $this->accept_currently_displayed_alert_dialog();
348 * Click on the element of the specified type which is located inside the second element.
350 * @When /^I click on "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" in the "(?P<element_container_string>(?:[^"]|\\")*)" "(?P<text_selector_string>[^"]*)"$/
351 * @param string $element Element we look for
352 * @param string $selectortype The type of what we look for
353 * @param string $nodeelement Element we look in
354 * @param string $nodeselectortype The type of selector where we look in
356 public function i_click_on_in_the($element, $selectortype, $nodeelement, $nodeselectortype) {
358 $node = $this->get_node_in_container($selectortype, $element, $nodeselectortype, $nodeelement);
359 $this->ensure_node_is_visible($node);
360 $node->click();
364 * Drags and drops the specified element to the specified container. This step does not work in all the browsers, consider it experimental.
366 * The steps definitions calling this step as part of them should
367 * manage the wait times by themselves as the times and when the
368 * waits should be done depends on what is being dragged & dropper.
370 * @Given /^I drag "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector1_string>(?:[^"]|\\")*)" and I drop it in "(?P<container_element_string>(?:[^"]|\\")*)" "(?P<selector2_string>(?:[^"]|\\")*)"$/
371 * @param string $element
372 * @param string $selectortype
373 * @param string $containerelement
374 * @param string $containerselectortype
376 public function i_drag_and_i_drop_it_in($element, $selectortype, $containerelement, $containerselectortype) {
378 list($sourceselector, $sourcelocator) = $this->transform_selector($selectortype, $element);
379 $sourcexpath = $this->getSession()->getSelectorsHandler()->selectorToXpath($sourceselector, $sourcelocator);
381 list($containerselector, $containerlocator) = $this->transform_selector($containerselectortype, $containerelement);
382 $destinationxpath = $this->getSession()->getSelectorsHandler()->selectorToXpath($containerselector, $containerlocator);
384 $this->getSession()->getDriver()->dragTo($sourcexpath, $destinationxpath);
388 * Checks, that the specified element is visible. Only available in tests using Javascript.
390 * @Then /^"(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>(?:[^"]|\\")*)" should be visible$/
391 * @throws ElementNotFoundException
392 * @throws ExpectationException
393 * @throws DriverException
394 * @param string $element
395 * @param string $selectortype
396 * @return void
398 public function should_be_visible($element, $selectortype) {
400 if (!$this->running_javascript()) {
401 throw new DriverException('Visible checks are disabled in scenarios without Javascript support');
404 $node = $this->get_selected_node($selectortype, $element);
405 if (!$node->isVisible()) {
406 throw new ExpectationException('"' . $element . '" "' . $selectortype . '" is not visible', $this->getSession());
411 * Checks, that the existing element is not visible. Only available in tests using Javascript.
413 * As a "not" method, it's performance could not be good, but in this
414 * case the performance is good because the element must exist,
415 * otherwise there would be a ElementNotFoundException, also here we are
416 * not spinning until the element is visible.
418 * @Then /^"(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>(?:[^"]|\\")*)" should not be visible$/
419 * @throws ElementNotFoundException
420 * @throws ExpectationException
421 * @param string $element
422 * @param string $selectortype
423 * @return void
425 public function should_not_be_visible($element, $selectortype) {
427 try {
428 $this->should_be_visible($element, $selectortype);
429 throw new ExpectationException('"' . $element . '" "' . $selectortype . '" is visible', $this->getSession());
430 } catch (ExpectationException $e) {
431 // All as expected.
436 * Checks, that the specified element is visible inside the specified container. Only available in tests using Javascript.
438 * @Then /^"(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" in the "(?P<element_container_string>(?:[^"]|\\")*)" "(?P<text_selector_string>[^"]*)" should be visible$/
439 * @throws ElementNotFoundException
440 * @throws DriverException
441 * @throws ExpectationException
442 * @param string $element Element we look for
443 * @param string $selectortype The type of what we look for
444 * @param string $nodeelement Element we look in
445 * @param string $nodeselectortype The type of selector where we look in
447 public function in_the_should_be_visible($element, $selectortype, $nodeelement, $nodeselectortype) {
449 if (!$this->running_javascript()) {
450 throw new DriverException('Visible checks are disabled in scenarios without Javascript support');
453 $node = $this->get_node_in_container($selectortype, $element, $nodeselectortype, $nodeelement);
454 if (!$node->isVisible()) {
455 throw new ExpectationException(
456 '"' . $element . '" "' . $selectortype . '" in the "' . $nodeelement . '" "' . $nodeselectortype . '" is not visible',
457 $this->getSession()
463 * Checks, that the existing element is not visible inside the existing container. Only available in tests using Javascript.
465 * As a "not" method, it's performance could not be good, but in this
466 * case the performance is good because the element must exist,
467 * otherwise there would be a ElementNotFoundException, also here we are
468 * not spinning until the element is visible.
470 * @Then /^"(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" in the "(?P<element_container_string>(?:[^"]|\\")*)" "(?P<text_selector_string>[^"]*)" should not be visible$/
471 * @throws ElementNotFoundException
472 * @throws ExpectationException
473 * @param string $element Element we look for
474 * @param string $selectortype The type of what we look for
475 * @param string $nodeelement Element we look in
476 * @param string $nodeselectortype The type of selector where we look in
478 public function in_the_should_not_be_visible($element, $selectortype, $nodeelement, $nodeselectortype) {
480 try {
481 $this->in_the_should_be_visible($element, $selectortype, $nodeelement, $nodeselectortype);
482 throw new ExpectationException(
483 '"' . $element . '" "' . $selectortype . '" in the "' . $nodeelement . '" "' . $nodeselectortype . '" is visible',
484 $this->getSession()
486 } catch (ExpectationException $e) {
487 // All as expected.
492 * Checks, that page contains specified text. It also checks if the text is visible when running Javascript tests.
494 * @Then /^I should see "(?P<text_string>(?:[^"]|\\")*)"$/
495 * @throws ExpectationException
496 * @param string $text
498 public function assert_page_contains_text($text) {
500 // Looking for all the matching nodes without any other descendant matching the
501 // same xpath (we are using contains(., ....).
502 $xpathliteral = $this->getSession()->getSelectorsHandler()->xpathLiteral($text);
503 $xpath = "/descendant-or-self::*[contains(., $xpathliteral)]" .
504 "[count(descendant::*[contains(., $xpathliteral)]) = 0]";
506 try {
507 $nodes = $this->find_all('xpath', $xpath);
508 } catch (ElementNotFoundException $e) {
509 throw new ExpectationException('"' . $text . '" text was not found in the page', $this->getSession());
512 // If we are not running javascript we have enough with the
513 // element existing as we can't check if it is visible.
514 if (!$this->running_javascript()) {
515 return;
518 // We spin as we don't have enough checking that the element is there, we
519 // should also ensure that the element is visible. Using microsleep as this
520 // is a repeated step and global performance is important.
521 $this->spin(
522 function($context, $args) {
524 foreach ($args['nodes'] as $node) {
525 if ($node->isVisible()) {
526 return true;
530 // If non of the nodes is visible we loop again.
531 throw new ExpectationException('"' . $args['text'] . '" text was found but was not visible', $context->getSession());
533 array('nodes' => $nodes, 'text' => $text),
534 false,
535 false,
536 true
542 * Checks, that page doesn't contain specified text. When running Javascript tests it also considers that texts may be hidden.
544 * @Then /^I should not see "(?P<text_string>(?:[^"]|\\")*)"$/
545 * @throws ExpectationException
546 * @param string $text
548 public function assert_page_not_contains_text($text) {
550 // Looking for all the matching nodes without any other descendant matching the
551 // same xpath (we are using contains(., ....).
552 $xpathliteral = $this->getSession()->getSelectorsHandler()->xpathLiteral($text);
553 $xpath = "/descendant-or-self::*[contains(., $xpathliteral)]" .
554 "[count(descendant::*[contains(., $xpathliteral)]) = 0]";
556 // We should wait a while to ensure that the page is not still loading elements.
557 // Waiting less than self::TIMEOUT as we already waited for the DOM to be ready and
558 // all JS to be executed.
559 try {
560 $nodes = $this->find_all('xpath', $xpath, false, false, self::REDUCED_TIMEOUT);
561 } catch (ElementNotFoundException $e) {
562 // All ok.
563 return;
566 // If we are not running javascript we have enough with the
567 // element existing as we can't check if it is hidden.
568 if (!$this->running_javascript()) {
569 throw new ExpectationException('"' . $text . '" text was found in the page', $this->getSession());
572 // If the element is there we should be sure that it is not visible.
573 $this->spin(
574 function($context, $args) {
576 foreach ($args['nodes'] as $node) {
577 if ($node->isVisible()) {
578 throw new ExpectationException('"' . $args['text'] . '" text was found in the page', $context->getSession());
582 // If non of the found nodes is visible we consider that the text is not visible.
583 return true;
585 array('nodes' => $nodes, 'text' => $text),
586 self::REDUCED_TIMEOUT,
587 false,
588 true
594 * Checks, that the specified element contains the specified text. When running Javascript tests it also considers that texts may be hidden.
596 * @Then /^I should see "(?P<text_string>(?:[^"]|\\")*)" in the "(?P<element_string>(?:[^"]|\\")*)" "(?P<text_selector_string>[^"]*)"$/
597 * @throws ElementNotFoundException
598 * @throws ExpectationException
599 * @param string $text
600 * @param string $element Element we look in.
601 * @param string $selectortype The type of element where we are looking in.
603 public function assert_element_contains_text($text, $element, $selectortype) {
605 // Getting the container where the text should be found.
606 $container = $this->get_selected_node($selectortype, $element);
608 // Looking for all the matching nodes without any other descendant matching the
609 // same xpath (we are using contains(., ....).
610 $xpathliteral = $this->getSession()->getSelectorsHandler()->xpathLiteral($text);
611 $xpath = "/descendant-or-self::*[contains(., $xpathliteral)]" .
612 "[count(descendant::*[contains(., $xpathliteral)]) = 0]";
614 // Wait until it finds the text inside the container, otherwise custom exception.
615 try {
616 $nodes = $this->find_all('xpath', $xpath, false, $container);
617 } catch (ElementNotFoundException $e) {
618 throw new ExpectationException('"' . $text . '" text was not found in the "' . $element . '" element', $this->getSession());
621 // If we are not running javascript we have enough with the
622 // element existing as we can't check if it is visible.
623 if (!$this->running_javascript()) {
624 return;
627 // We also check the element visibility when running JS tests. Using microsleep as this
628 // is a repeated step and global performance is important.
629 $this->spin(
630 function($context, $args) {
632 foreach ($args['nodes'] as $node) {
633 if ($node->isVisible()) {
634 return true;
638 throw new ExpectationException('"' . $args['text'] . '" text was found in the "' . $args['element'] . '" element but was not visible', $context->getSession());
640 array('nodes' => $nodes, 'text' => $text, 'element' => $element),
641 false,
642 false,
643 true
648 * Checks, that the specified element does not contain the specified text. When running Javascript tests it also considers that texts may be hidden.
650 * @Then /^I should not see "(?P<text_string>(?:[^"]|\\")*)" in the "(?P<element_string>(?:[^"]|\\")*)" "(?P<text_selector_string>[^"]*)"$/
651 * @throws ElementNotFoundException
652 * @throws ExpectationException
653 * @param string $text
654 * @param string $element Element we look in.
655 * @param string $selectortype The type of element where we are looking in.
657 public function assert_element_not_contains_text($text, $element, $selectortype) {
659 // Getting the container where the text should be found.
660 $container = $this->get_selected_node($selectortype, $element);
662 // Looking for all the matching nodes without any other descendant matching the
663 // same xpath (we are using contains(., ....).
664 $xpathliteral = $this->getSession()->getSelectorsHandler()->xpathLiteral($text);
665 $xpath = "/descendant-or-self::*[contains(., $xpathliteral)]" .
666 "[count(descendant::*[contains(., $xpathliteral)]) = 0]";
668 // We should wait a while to ensure that the page is not still loading elements.
669 // Giving preference to the reliability of the results rather than to the performance.
670 try {
671 $nodes = $this->find_all('xpath', $xpath, false, $container, self::REDUCED_TIMEOUT);
672 } catch (ElementNotFoundException $e) {
673 // All ok.
674 return;
677 // If we are not running javascript we have enough with the
678 // element not being found as we can't check if it is visible.
679 if (!$this->running_javascript()) {
680 throw new ExpectationException('"' . $text . '" text was found in the "' . $element . '" element', $this->getSession());
683 // We need to ensure all the found nodes are hidden.
684 $this->spin(
685 function($context, $args) {
687 foreach ($args['nodes'] as $node) {
688 if ($node->isVisible()) {
689 throw new ExpectationException('"' . $args['text'] . '" text was found in the "' . $args['element'] . '" element', $context->getSession());
693 // If all the found nodes are hidden we are happy.
694 return true;
696 array('nodes' => $nodes, 'text' => $text, 'element' => $element),
697 self::REDUCED_TIMEOUT,
698 false,
699 true
704 * Checks, that the first specified element appears before the second one.
706 * @Given /^"(?P<preceding_element_string>(?:[^"]|\\")*)" "(?P<selector1_string>(?:[^"]|\\")*)" should appear before "(?P<following_element_string>(?:[^"]|\\")*)" "(?P<selector2_string>(?:[^"]|\\")*)"$/
707 * @throws ExpectationException
708 * @param string $preelement The locator of the preceding element
709 * @param string $preselectortype The locator of the preceding element
710 * @param string $postelement The locator of the latest element
711 * @param string $postselectortype The selector type of the latest element
713 public function should_appear_before($preelement, $preselectortype, $postelement, $postselectortype) {
715 // We allow postselectortype as a non-text based selector.
716 list($preselector, $prelocator) = $this->transform_selector($preselectortype, $preelement);
717 list($postselector, $postlocator) = $this->transform_selector($postselectortype, $postelement);
719 $prexpath = $this->find($preselector, $prelocator)->getXpath();
720 $postxpath = $this->find($postselector, $postlocator)->getXpath();
722 // Using following xpath axe to find it.
723 $msg = '"'.$preelement.'" "'.$preselectortype.'" does not appear before "'.$postelement.'" "'.$postselectortype.'"';
724 $xpath = $prexpath.'/following::*[contains(., '.$postxpath.')]';
725 if (!$this->getSession()->getDriver()->find($xpath)) {
726 throw new ExpectationException($msg, $this->getSession());
731 * Checks, that the first specified element appears after the second one.
733 * @Given /^"(?P<following_element_string>(?:[^"]|\\")*)" "(?P<selector1_string>(?:[^"]|\\")*)" should appear after "(?P<preceding_element_string>(?:[^"]|\\")*)" "(?P<selector2_string>(?:[^"]|\\")*)"$/
734 * @throws ExpectationException
735 * @param string $postelement The locator of the latest element
736 * @param string $postselectortype The selector type of the latest element
737 * @param string $preelement The locator of the preceding element
738 * @param string $preselectortype The locator of the preceding element
740 public function should_appear_after($postelement, $postselectortype, $preelement, $preselectortype) {
742 // We allow postselectortype as a non-text based selector.
743 list($postselector, $postlocator) = $this->transform_selector($postselectortype, $postelement);
744 list($preselector, $prelocator) = $this->transform_selector($preselectortype, $preelement);
746 $postxpath = $this->find($postselector, $postlocator)->getXpath();
747 $prexpath = $this->find($preselector, $prelocator)->getXpath();
749 // Using preceding xpath axe to find it.
750 $msg = '"'.$postelement.'" "'.$postselectortype.'" does not appear after "'.$preelement.'" "'.$preselectortype.'"';
751 $xpath = $postxpath.'/preceding::*[contains(., '.$prexpath.')]';
752 if (!$this->getSession()->getDriver()->find($xpath)) {
753 throw new ExpectationException($msg, $this->getSession());
758 * Checks, that element of specified type is disabled.
760 * @Then /^the "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" should be disabled$/
761 * @throws ExpectationException Thrown by behat_base::find
762 * @param string $element Element we look in
763 * @param string $selectortype The type of element where we are looking in.
765 public function the_element_should_be_disabled($element, $selectortype) {
767 // Transforming from steps definitions selector/locator format to Mink format and getting the NodeElement.
768 $node = $this->get_selected_node($selectortype, $element);
770 if (!$node->hasAttribute('disabled')) {
771 throw new ExpectationException('The element "' . $element . '" is not disabled', $this->getSession());
776 * Checks, that element of specified type is enabled.
778 * @Then /^the "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" should be enabled$/
779 * @throws ExpectationException Thrown by behat_base::find
780 * @param string $element Element we look on
781 * @param string $selectortype The type of where we look
783 public function the_element_should_be_enabled($element, $selectortype) {
785 // Transforming from steps definitions selector/locator format to mink format and getting the NodeElement.
786 $node = $this->get_selected_node($selectortype, $element);
788 if ($node->hasAttribute('disabled')) {
789 throw new ExpectationException('The element "' . $element . '" is not enabled', $this->getSession());
794 * Checks the provided element and selector type are readonly on the current page.
796 * @Then /^the "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" should be readonly$/
797 * @throws ExpectationException Thrown by behat_base::find
798 * @param string $element Element we look in
799 * @param string $selectortype The type of element where we are looking in.
801 public function the_element_should_be_readonly($element, $selectortype) {
802 // Transforming from steps definitions selector/locator format to Mink format and getting the NodeElement.
803 $node = $this->get_selected_node($selectortype, $element);
805 if (!$node->hasAttribute('readonly')) {
806 throw new ExpectationException('The element "' . $element . '" is not readonly', $this->getSession());
811 * Checks the provided element and selector type are not readonly on the current page.
813 * @Then /^the "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" should not be readonly$/
814 * @throws ExpectationException Thrown by behat_base::find
815 * @param string $element Element we look in
816 * @param string $selectortype The type of element where we are looking in.
818 public function the_element_should_not_be_readonly($element, $selectortype) {
819 // Transforming from steps definitions selector/locator format to Mink format and getting the NodeElement.
820 $node = $this->get_selected_node($selectortype, $element);
822 if ($node->hasAttribute('readonly')) {
823 throw new ExpectationException('The element "' . $element . '" is readonly', $this->getSession());
828 * Checks the provided element and selector type exists in the current page.
830 * This step is for advanced users, use it if you don't find anything else suitable for what you need.
832 * @Then /^"(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" should exist$/
833 * @throws ElementNotFoundException Thrown by behat_base::find
834 * @param string $element The locator of the specified selector
835 * @param string $selectortype The selector type
837 public function should_exist($element, $selectortype) {
839 // Getting Mink selector and locator.
840 list($selector, $locator) = $this->transform_selector($selectortype, $element);
842 // Will throw an ElementNotFoundException if it does not exist.
843 $this->find($selector, $locator);
847 * Checks that the provided element and selector type not exists in the current page.
849 * This step is for advanced users, use it if you don't find anything else suitable for what you need.
851 * @Then /^"(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" should not exist$/
852 * @throws ExpectationException
853 * @param string $element The locator of the specified selector
854 * @param string $selectortype The selector type
856 public function should_not_exist($element, $selectortype) {
858 // Getting Mink selector and locator.
859 list($selector, $locator) = $this->transform_selector($selectortype, $element);
861 try {
863 // Using directly the spin method as we want a reduced timeout but there is no
864 // need for a 0.1 seconds interval because in the optimistic case we will timeout.
865 $params = array('selector' => $selector, 'locator' => $locator);
866 // The exception does not really matter as we will catch it and will never "explode".
867 $exception = new ElementNotFoundException($this->getSession(), $selectortype, null, $element);
869 // If all goes good it will throw an ElementNotFoundExceptionn that we will catch.
870 $this->spin(
871 function($context, $args) {
872 return $context->getSession()->getPage()->findAll($args['selector'], $args['locator']);
874 $params,
875 self::REDUCED_TIMEOUT,
876 $exception,
877 false
880 throw new ExpectationException('The "' . $element . '" "' . $selectortype . '" exists in the current page', $this->getSession());
881 } catch (ElementNotFoundException $e) {
882 // It passes.
883 return;
888 * This step triggers cron like a user would do going to admin/cron.php.
890 * @Given /^I trigger cron$/
892 public function i_trigger_cron() {
893 $this->getSession()->visit($this->locate_path('/admin/cron.php'));
897 * Checks that an element and selector type exists in another element and selector type on the current page.
899 * This step is for advanced users, use it if you don't find anything else suitable for what you need.
901 * @Then /^"(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" should exist in the "(?P<element2_string>(?:[^"]|\\")*)" "(?P<selector2_string>[^"]*)"$/
902 * @throws ElementNotFoundException Thrown by behat_base::find
903 * @param string $element The locator of the specified selector
904 * @param string $selectortype The selector type
905 * @param string $containerelement The container selector type
906 * @param string $containerselectortype The container locator
908 public function should_exist_in_the($element, $selectortype, $containerelement, $containerselectortype) {
909 // Get the container node.
910 $containernode = $this->get_selected_node($containerselectortype, $containerelement);
912 list($selector, $locator) = $this->transform_selector($selectortype, $element);
914 // Specific exception giving info about where can't we find the element.
915 $locatorexceptionmsg = $element . '" in the "' . $containerelement. '" "' . $containerselectortype. '"';
916 $exception = new ElementNotFoundException($this->getSession(), $selectortype, null, $locatorexceptionmsg);
918 // Looks for the requested node inside the container node.
919 $this->find($selector, $locator, $exception, $containernode);
923 * Checks that an element and selector type does not exist in another element and selector type on the current page.
925 * This step is for advanced users, use it if you don't find anything else suitable for what you need.
927 * @Then /^"(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" should not exist in the "(?P<element2_string>(?:[^"]|\\")*)" "(?P<selector2_string>[^"]*)"$/
928 * @throws ExpectationException
929 * @param string $element The locator of the specified selector
930 * @param string $selectortype The selector type
931 * @param string $containerelement The container selector type
932 * @param string $containerselectortype The container locator
934 public function should_not_exist_in_the($element, $selectortype, $containerelement, $containerselectortype) {
936 // Get the container node; here we throw an exception
937 // if the container node does not exist.
938 $containernode = $this->get_selected_node($containerselectortype, $containerelement);
940 list($selector, $locator) = $this->transform_selector($selectortype, $element);
942 // Will throw an ElementNotFoundException if it does not exist, but, actually
943 // it should not exist, so we try & catch it.
944 try {
945 // Would be better to use a 1 second sleep because the element should not be there,
946 // but we would need to duplicate the whole find_all() logic to do it, the benefit of
947 // changing to 1 second sleep is not significant.
948 $this->find($selector, $locator, false, $containernode, self::REDUCED_TIMEOUT);
949 throw new ExpectationException('The "' . $element . '" "' . $selectortype . '" exists in the "' .
950 $containerelement . '" "' . $containerselectortype . '"', $this->getSession());
951 } catch (ElementNotFoundException $e) {
952 // It passes.
953 return;
958 * Change browser window size small: 640x480, medium: 1024x768, large: 2560x1600, custom: widthxheight
960 * Example: I change window size to "small" or I change window size to "1024x768"
962 * @throws ExpectationException
963 * @Then /^I change window size to "([^"](small|medium|large|\d+x\d+))"$/
964 * @param string $windowsize size of the window (small|medium|large|wxh).
966 public function i_change_window_size_to($windowsize) {
967 $this->resize_window($windowsize);
971 * Checks whether there is an attribute on the given element that contains the specified text.
973 * @Then /^the "(?P<attribute_string>[^"]*)" attribute of "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" should contain "(?P<text_string>(?:[^"]|\\")*)"$/
974 * @throws ExpectationException
975 * @param string $attribute Name of attribute
976 * @param string $element The locator of the specified selector
977 * @param string $selectortype The selector type
978 * @param string $text Expected substring
980 public function the_attribute_of_should_contain($attribute, $element, $selectortype, $text) {
981 // Get the container node (exception if it doesn't exist).
982 $containernode = $this->get_selected_node($selectortype, $element);
983 $value = $containernode->getAttribute($attribute);
984 if ($value == null) {
985 throw new ExpectationException('The attribute "' . $attribute. '" does not exist',
986 $this->getSession());
987 } else if (strpos($value, $text) === false) {
988 throw new ExpectationException('The attribute "' . $attribute .
989 '" does not contain "' . $text . '" (actual value: "' . $value . '")',
990 $this->getSession());
995 * Checks that the attribute on the given element does not contain the specified text.
997 * @Then /^the "(?P<attribute_string>[^"]*)" attribute of "(?P<element_string>(?:[^"]|\\")*)" "(?P<selector_string>[^"]*)" should not contain "(?P<text_string>(?:[^"]|\\")*)"$/
998 * @throws ExpectationException
999 * @param string $attribute Name of attribute
1000 * @param string $element The locator of the specified selector
1001 * @param string $selectortype The selector type
1002 * @param string $text Expected substring
1004 public function the_attribute_of_should_not_contain($attribute, $element, $selectortype, $text) {
1005 // Get the container node (exception if it doesn't exist).
1006 $containernode = $this->get_selected_node($selectortype, $element);
1007 $value = $containernode->getAttribute($attribute);
1008 if ($value == null) {
1009 throw new ExpectationException('The attribute "' . $attribute. '" does not exist',
1010 $this->getSession());
1011 } else if (strpos($value, $text) !== false) {
1012 throw new ExpectationException('The attribute "' . $attribute .
1013 '" contains "' . $text . '" (value: "' . $value . '")',
1014 $this->getSession());
1019 * Checks the provided value exists in specific row/column of table.
1021 * @Then /^"(?P<row_string>[^"]*)" row "(?P<column_string>[^"]*)" column of "(?P<table_string>[^"]*)" table should contain "(?P<value_string>[^"]*)"$/
1022 * @throws ElementNotFoundException
1023 * @param string $row row text which will be looked in.
1024 * @param string $column column text to search (or numeric value for the column position)
1025 * @param string $table table id/class/caption
1026 * @param string $value text to check.
1028 public function row_column_of_table_should_contain($row, $column, $table, $value) {
1029 $tablenode = $this->get_selected_node('table', $table);
1030 $tablexpath = $tablenode->getXpath();
1032 $rowliteral = $this->getSession()->getSelectorsHandler()->xpathLiteral($row);
1033 $valueliteral = $this->getSession()->getSelectorsHandler()->xpathLiteral($value);
1034 $columnliteral = $this->getSession()->getSelectorsHandler()->xpathLiteral($column);
1036 if (preg_match('/^-?(\d+)-?$/', $column, $columnasnumber)) {
1037 // Column indicated as a number, just use it as position of the column.
1038 $columnpositionxpath = "/child::*[position() = {$columnasnumber[1]}]";
1039 } else {
1040 // Header can be in thead or tbody (first row), following xpath should work.
1041 $theadheaderxpath = "thead/tr[1]/th[(normalize-space(.)=" . $columnliteral . " or a[normalize-space(text())=" .
1042 $columnliteral . "])]";
1043 $tbodyheaderxpath = "tbody/tr[1]/td[(normalize-space(.)=" . $columnliteral . " or a[normalize-space(text())=" .
1044 $columnliteral . "])]";
1046 // Check if column exists.
1047 $columnheaderxpath = $tablexpath . "[" . $theadheaderxpath . " | " . $tbodyheaderxpath . "]";
1048 $columnheader = $this->getSession()->getDriver()->find($columnheaderxpath);
1049 if (empty($columnheader)) {
1050 $columnexceptionmsg = $column . '" in table "' . $table . '"';
1051 throw new ElementNotFoundException($this->getSession(), "\n$columnheaderxpath\n\n".'Column', null, $columnexceptionmsg);
1053 // Following conditions were considered before finding column count.
1054 // 1. Table header can be in thead/tr/th or tbody/tr/td[1].
1055 // 2. First column can have th (Gradebook -> user report), so having lenient sibling check.
1056 $columnpositionxpath = "/child::*[position() = count(" . $tablexpath . "/" . $theadheaderxpath .
1057 "/preceding-sibling::*) + 1]";
1060 // Check if value exists in specific row/column.
1061 // Get row xpath.
1062 $rowxpath = $tablexpath."/tbody/tr[th[normalize-space(.)=" . $rowliteral . "] | td[normalize-space(.)=" . $rowliteral . "]]";
1064 $columnvaluexpath = $rowxpath . $columnpositionxpath . "[contains(normalize-space(.)," . $valueliteral . ")]";
1066 // Looks for the requested node inside the container node.
1067 $coumnnode = $this->getSession()->getDriver()->find($columnvaluexpath);
1068 if (empty($coumnnode)) {
1069 $locatorexceptionmsg = $value . '" in "' . $row . '" row with column "' . $column;
1070 throw new ElementNotFoundException($this->getSession(), "\n$columnvaluexpath\n\n".'Column value', null, $locatorexceptionmsg);
1075 * Checks the provided value should not exist in specific row/column of table.
1077 * @Then /^"(?P<row_string>[^"]*)" row "(?P<column_string>[^"]*)" column of "(?P<table_string>[^"]*)" table should not contain "(?P<value_string>[^"]*)"$/
1078 * @throws ElementNotFoundException
1079 * @param string $row row text which will be looked in.
1080 * @param string $column column text to search
1081 * @param string $table table id/class/caption
1082 * @param string $value text to check.
1084 public function row_column_of_table_should_not_contain($row, $column, $table, $value) {
1085 try {
1086 $this->row_column_of_table_should_contain($row, $column, $table, $value);
1087 // Throw exception if found.
1088 throw new ExpectationException(
1089 '"' . $column . '" with value "' . $value . '" is present in "' . $row . '" row for table "' . $table . '"',
1090 $this->getSession()
1092 } catch (ElementNotFoundException $e) {
1093 // Table row/column doesn't contain this value. Nothing to do.
1094 return;
1099 * Checks that the provided value exist in table.
1100 * More info in http://docs.moodle.org/dev/Acceptance_testing#Providing_values_to_steps.
1102 * First row may contain column headers or numeric indexes of the columns
1103 * (syntax -1- is also considered to be column index). Column indexes are
1104 * useful in case of multirow headers and/or presence of cells with colspan.
1106 * @Then /^the following should exist in the "(?P<table_string>[^"]*)" table:$/
1107 * @throws ExpectationException
1108 * @param string $table name of table
1109 * @param TableNode $data table with first row as header and following values
1110 * | Header 1 | Header 2 | Header 3 |
1111 * | Value 1 | Value 2 | Value 3|
1113 public function following_should_exist_in_the_table($table, TableNode $data) {
1114 $datahash = $data->getHash();
1116 foreach ($datahash as $row) {
1117 $firstcell = null;
1118 foreach ($row as $column => $value) {
1119 if ($firstcell === null) {
1120 $firstcell = $value;
1121 } else {
1122 $this->row_column_of_table_should_contain($firstcell, $column, $table, $value);
1129 * Checks that the provided value exist in table.
1130 * More info in http://docs.moodle.org/dev/Acceptance_testing#Providing_values_to_steps.
1132 * @Then /^the following should not exist in the "(?P<table_string>[^"]*)" table:$/
1133 * @throws ExpectationException
1134 * @param string $table name of table
1135 * @param TableNode $data table with first row as header and following values
1136 * | Header 1 | Header 2 | Header 3 |
1137 * | Value 1 | Value 2 | Value 3|
1139 public function following_should_not_exist_in_the_table($table, TableNode $data) {
1140 $datahash = $data->getHash();
1142 foreach ($datahash as $value) {
1143 $row = array_shift($value);
1144 foreach ($value as $column => $value) {
1145 try {
1146 $this->row_column_of_table_should_contain($row, $column, $table, $value);
1147 // Throw exception if found.
1148 throw new ExpectationException('"' . $column . '" with value "' . $value . '" is present in "' .
1149 $row . '" row for table "' . $table . '"', $this->getSession()
1151 } catch (ElementNotFoundException $e) {
1152 // Table row/column doesn't contain this value. Nothing to do.
1153 continue;
1160 * Given the text of a link, download the linked file and return the contents.
1162 * This is a helper method used by {@link following_should_download_bytes()}
1163 * and {@link following_should_download_between_and_bytes()}
1165 * @param string $link the text of the link.
1166 * @return string the content of the downloaded file.
1168 protected function download_file_from_link($link) {
1169 // Find the link.
1170 $linknode = $this->find_link($link);
1171 $this->ensure_node_is_visible($linknode);
1173 // Get the href and check it.
1174 $url = $linknode->getAttribute('href');
1175 if (!$url) {
1176 throw new ExpectationException('Download link does not have href attribute',
1177 $this->getSession());
1179 if (!preg_match('~^https?://~', $url)) {
1180 throw new ExpectationException('Download link not an absolute URL: ' . $url,
1181 $this->getSession());
1184 // Download the URL and check the size.
1185 $session = $this->getSession()->getCookie('MoodleSession');
1186 return download_file_content($url, array('Cookie' => 'MoodleSession=' . $session));
1190 * Downloads the file from a link on the page and checks the size.
1192 * Only works if the link has an href attribute. Javascript downloads are
1193 * not supported. Currently, the href must be an absolute URL.
1195 * @Then /^following "(?P<link_string>[^"]*)" should download "(?P<expected_bytes>\d+)" bytes$/
1196 * @throws ExpectationException
1197 * @param string $link the text of the link.
1198 * @param number $expectedsize the expected file size in bytes.
1200 public function following_should_download_bytes($link, $expectedsize) {
1201 $result = $this->download_file_from_link($link);
1202 $actualsize = (int)strlen($result);
1203 if ($actualsize !== (int)$expectedsize) {
1204 throw new ExpectationException('Downloaded data was ' . $actualsize .
1205 ' bytes, expecting ' . $expectedsize, $this->getSession());
1210 * Downloads the file from a link on the page and checks the size is in a given range.
1212 * Only works if the link has an href attribute. Javascript downloads are
1213 * not supported. Currently, the href must be an absolute URL.
1215 * The range includes the endpoints. That is, a 10 byte file in considered to
1216 * be between "5" and "10" bytes, and between "10" and "20" bytes.
1218 * @Then /^following "(?P<link_string>[^"]*)" should download between "(?P<min_bytes>\d+)" and "(?P<max_bytes>\d+)" bytes$/
1219 * @throws ExpectationException
1220 * @param string $link the text of the link.
1221 * @param number $minexpectedsize the minimum expected file size in bytes.
1222 * @param number $maxexpectedsize the maximum expected file size in bytes.
1224 public function following_should_download_between_and_bytes($link, $minexpectedsize, $maxexpectedsize) {
1225 // If the minimum is greater than the maximum then swap the values.
1226 if ((int)$minexpectedsize > (int)$maxexpectedsize) {
1227 list($minexpectedsize, $maxexpectedsize) = array($maxexpectedsize, $minexpectedsize);
1230 $result = $this->download_file_from_link($link);
1231 $actualsize = (int)strlen($result);
1232 if ($actualsize < $minexpectedsize || $actualsize > $maxexpectedsize) {
1233 throw new ExpectationException('Downloaded data was ' . $actualsize .
1234 ' bytes, expecting between ' . $minexpectedsize . ' and ' .
1235 $maxexpectedsize, $this->getSession());
1240 * Prepare to detect whether or not a new page has loaded (or the same page reloaded) some time in the future.
1242 * @Given /^I start watching to see if a new page loads$/
1244 public function i_start_watching_to_see_if_a_new_page_loads() {
1245 if (!$this->running_javascript()) {
1246 throw new DriverException('Page load detection requires JavaScript.');
1249 if ($this->getSession()->getPage()->find('xpath', $this->get_page_load_xpath())) {
1250 // If we find this node at this point we are already watching for a reload and the behat steps
1251 // are out of order. We will treat this as an error - really it needs to be fixed as it indicates a problem.
1252 throw new ExpectationException('Page load expectation error: page reloads are already been watched for.');
1255 $this->pageloaddetectionrunning = true;
1257 $this->getSession()->evaluateScript(
1258 'var span = document.createElement("span");
1259 span.setAttribute("data-rel", "' . self::PAGE_LOAD_DETECTION_STRING . '");
1260 span.setAttribute("style", "display: none;");
1261 document.body.appendChild(span);');
1265 * Verify that a new page has loaded (or the same page has reloaded) since the
1266 * last "I start watching to see if a new page loads" step.
1268 * @Given /^a new page should have loaded since I started watching$/
1270 public function a_new_page_should_have_loaded_since_i_started_watching() {
1271 // As the node is inserted by code above it is either there or not, and we do not need spin and it is safe
1272 // to use the native API here which is great as exception handling (the alternative is slow).
1273 if ($this->getSession()->getPage()->find('xpath', $this->get_page_load_xpath())) {
1274 // We don't want to find this node, if we do we have an error.
1275 throw new ExpectationException(
1276 'Page load expectation error: a new page has not been loaded when it should have been.',
1277 $this->getSession()
1281 if (!$this->pageloaddetectionrunning) {
1282 throw new ExpectationException(
1283 'Page load expectation error: page load tracking was not started.',
1284 $this->getSession());
1287 // Cancel the trakcing of pageloaddetectionrunning.
1288 $this->pageloaddetectionrunning = false;
1292 * Verify that a new page has not loaded (or the same page has reloaded) since the
1293 * last "I start watching to see if a new page loads" step.
1295 * @Given /^a new page should not have loaded since I started watching$/
1297 public function a_new_page_should_not_have_loaded_since_i_started_watching() {
1298 // We use our API here as we can use the exception handling provided by it.
1299 $this->find(
1300 'xpath',
1301 $this->get_page_load_xpath(),
1302 new ExpectationException(
1303 'Page load expectation error: A new page has been loaded when it should not have been.',
1304 $this->getSession()
1310 * Helper used by {@link a_new_page_should_have_loaded_since_i_started_watching}
1311 * and {@link a_new_page_should_not_have_loaded_since_i_started_watching}
1312 * @return string xpath expression.
1314 protected function get_page_load_xpath() {
1315 return "//span[@data-rel = '" . self::PAGE_LOAD_DETECTION_STRING . "']";