如何使用watir选择或标记div内容中的部分文本?我尝试focus
和double_click
,但它没有用。
答案 0 :(得分:3)
这样的事情应该有效:
require "watir-webdriver/extensions/select_text"
browser.div(id: "select").select_text "text"
答案 1 :(得分:0)
尝试使用 flash 方法,例如......
browser=Watir::Browser.new
browser.goto('http://example.com')
browser.div(:id => 'example').p.flash
没有官方突出显示方法,但闪存适用于我必须使用的大部分内容。