MDL-69138 behat: Add "I visit :localurl" step

This commit is contained in:
Andrew Nicols
2020-07-22 16:50:55 +08:00
committed by Adrian Greeve
parent d1c2a39f16
commit 97abfe31cc
+12
View File
@@ -1833,4 +1833,16 @@ EOF;
$node = $this->get_selected_node($selectortype, $element);
$this->js_trigger_click($node);
}
/**
* Visit a local URL relative to the behat root.
*
* @When I visit :localurl
*
* @param string|moodle_url $localurl The URL relative to the behat_wwwroot to visit.
*/
public function i_visit($localurl): void {
$localurl = new moodle_url($localurl);
$this->getSession()->visit($this->locate_path($localurl->out_as_local_url(false)));
}
}