标签: ruby testing automation automated-tests watir-webdriver
有没有办法按照它包含的文字找到元素?
假设:
<div>foobar</div>
browser.div(text: contains('foo')).present? # => true
答案 0 :(得分:6)
是的!只需使用正则表达式:
browser.div(text: /foo/).present?