标签: automation automated-tests watir watir-webdriver
如何通过指定文本属性,无论是链接还是按钮或其他内容来定位元素。
在jquery中,我们可以写:
$('*').filter(function(){return $(this).text()=="some text";});
如何在Watir中实现相同的目标?
答案 0 :(得分:2)
如果您不知道元素类型,但您知道它的属性(在您的情况下是文本):
browser.element(:text => "some text")