How might I simulate a private browsing experience in Watir? (Selenium)

别等时光非礼了梦想. 提交于 2019-11-29 08:49:09

For Firefox (I am not sure about the other browsers), you can setup the profile to have private browsing enabled:

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

This was the solution from https://github.com/watir/watir-webdriver/issues/95. It seems to work (at least the main menu says it is private browsing).

For Chrome

browser = Watir::Browser.new :chrome, switches: ['--incognito']

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!