Watir - 使用部分文本查找元素

时间:2016-07-27 17:49:08

标签: ruby testing automation automated-tests watir-webdriver

有没有办法按照它包含的文字找到元素?

假设:

<div>foobar</div>

browser.div(text: contains('foo')).present?   
# => true

1 个答案:

答案 0 :(得分:6)

是的!只需使用正则表达式:

browser.div(text: /foo/).present?