本文整理汇总了PHP中Behat\Mink\Element\NodeElement::getXPath方法的典型用法代码示例。如果您正苦于以下问题:PHP NodeElement::getXPath方法的具体用法?PHP NodeElement::getXPath怎么用?PHP NodeElement::getXPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Behat\Mink\Element\NodeElement
的用法示例。
在下文中一共展示了NodeElement::getXPath方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ensure_node_is_visible
/**
* Ensures that the provided node is visible and we can interact with it.
*
* @throws ExpectationException
* @param NodeElement $node
* @return void Throws an exception if it times out without the element being visible
*/
protected function ensure_node_is_visible($node)
{
if (!$this->running_javascript()) {
return;
}
// Exception if it timesout and the element is still there.
$msg = 'The "' . $node->getXPath() . '" xpath node is not visible and it should be visible';
$exception = new ExpectationException($msg, $this->getSession());
// It will stop spinning once the isVisible() method returns true.
$this->spin(function ($context, $args) {
if ($args->isVisible()) {
return true;
}
return false;
}, $node, self::EXTENDED_TIMEOUT, $exception, true);
}