Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

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

Watir is a Selenium-based black-box testing tool that can automate tasks on the browser.

I would like to be able to open up a Watir::Browser.new that is in private browsing mode.

Thanks

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...