有什么想法吗?我已经尝试过设置webdriver.firefox.useExisting = true,如下面的链接所述,希望重用已启用firebug的现有窗口,但没有这样的运气。
答案 0 :(得分:6)
您必须创建一个始终启用Firebug的特定配置文件,然后在配置中使用此配置文件启动firefox
答案 1 :(得分:5)
快速回答是:
browser = Watir::Browser.new(:firefox, :profile => "default")
但如果您正在运行测试,则可能不应使用默认配置文件。
答案 2 :(得分:1)
profile = Selenium::WebDriver::Firefox::Profile.new
profile.add_extension "/path/to/firebug.xpi"
browser = Watir::Browser.new :firefox, :profile => profile