尝试使用“然后我按下”(用于按钮)或“然后我关注”(用于链接)页脚中的项目的正则表达式失败,并显示错误“找不到带有id | link | name的元素/链接.. “作为一个例子,我在这个公共网站上发现了这个异常:earthdata.nasa.gov网站(我们的网站尚未激活)。屏幕左侧显示“反馈”的按钮无法点击(原文如此)。
我正在对selenium 2.29.0服务器运行测试。如何扩展Mink以便它可以找到并“点击”链接,例如上面提到的“反馈”按钮?
答案 0 :(得分:7)
您可以使用XPath单击链接,而不是使用id来单击链接。 XPath是一种识别DOM中对象的通用方法,因此它始终有效。
对于那些没有使用Behat的人,请使用此链接阅读更多内容。它基本上是Selenium工具的包装。
并使用它来访问Selenium Web自动化测试站点:
http://docs.seleniumhq.org/download/
编辑:
Ian:感谢MacGyver的指针,这就是解决方案:
/** Click on the element with the provided xpath query
*
* @When /^I click on the element with xpath "([^"]*)"$/
*/
public function iClickOnTheElementWithXPath($xpath)
{
$session = $this->getSession(); // get the mink session
$element = $session->getPage()->find(
'xpath',
$session->getSelectorsHandler()->selectorToXpath('xpath', $xpath)
); // runs the actual query and returns the element
// errors must not pass silently
if (null === $element) {
throw new \InvalidArgumentException(sprintf('Could not evaluate XPath: "%s"', $xpath));
}
// ok, let's click on it
$element->click();
}