Merge branch 'wip-mdl-58056-m32' of https://github.com/rajeshtaneja/moodle into MOODLE_32_STABLE
This commit is contained in:
@@ -241,8 +241,9 @@ class behat_forms extends behat_base {
|
||||
* @return void
|
||||
*/
|
||||
public function i_set_the_field_with_xpath_to($fieldxpath, $value) {
|
||||
$fieldNode = $this->find('xpath', $fieldxpath);
|
||||
$field = behat_field_manager::get_form_field($fieldNode, $this->getSession());
|
||||
$fieldnode = $this->find('xpath', $fieldxpath);
|
||||
$this->ensure_node_is_visible($fieldnode);
|
||||
$field = behat_field_manager::get_form_field($fieldnode, $this->getSession());
|
||||
$field->set_value($value);
|
||||
}
|
||||
|
||||
|
||||
@@ -624,8 +624,16 @@ class behat_general extends behat_base {
|
||||
function($context, $args) {
|
||||
|
||||
foreach ($args['nodes'] as $node) {
|
||||
if ($node->isVisible()) {
|
||||
throw new ExpectationException('"' . $args['text'] . '" text was found in the page', $context->getSession());
|
||||
// If element is removed from dom, then just exit.
|
||||
try {
|
||||
// If element is visible then throw exception, so we keep spinning.
|
||||
if ($node->isVisible()) {
|
||||
throw new ExpectationException('"' . $args['text'] . '" text was found in the page',
|
||||
$context->getSession());
|
||||
}
|
||||
} catch (WebDriver\Exception\NoSuchElement $e) {
|
||||
// Do nothing just return, as element is no more on page.
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -637,7 +645,6 @@ class behat_general extends behat_base {
|
||||
false,
|
||||
true
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user