Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在新选项卡/窗口中打开链接并更改焦点?
br = Watir::Browser.new :firefox, :profile => 'default' br = Watir::Browser.new br.goto('localhost') link = br.div(:class, "div").a.href br.attach(link)
一些替代品?attachWatir 中的 Firefox 浏览器不存在该方法。
attach
这样的事情应该这样做:
browser.window(:title => "annoying popup").use do browser.button(:id => "close").click end
有关详细信息,请参阅http://watirwebdriver.com/browser-popups/