解决方法
对于Firefox(我不确定其他浏览器),您可以设置配置文件以启用隐私浏览:
profile = Selenium::WebDriver::Firefox::Profile.new profile['browser.privatebrowsing.dont_prompt_on_enter'] = true profile['browser.privatebrowsing.autostart'] = true b = Watir::Browser.new :firefox,:profile => profile
这是https://github.com/watir/watir-webdriver/issues/95的解决方案.它似乎工作(至少主菜单说它是私人浏览).