我目前正在使用含有C#的selenium 3.8。我在下面尝试了2个脚本段,但它不起作用。
[-----1----]
FirefoxProfile firefoxProfile = new FirefoxProfile();
firefoxProfile.SetPreference("browser.private.browsing.autostart", true);
FirefoxOptions options = new FirefoxOptions();
options.Profile = firefoxProfile;
IWebDriver webDriver = new FirefoxDriver(driverService, options, TimeSpan.FromMinutes(1));
[-----2----]
FirefoxOptions options = new FirefoxOptions();
options.AddArgument("--private");
IWebDriver webDriver = new FirefoxDriver(options);
请帮我找一个解决方案?
答案 0 :(得分:0)
转到浏览器设置 - 高级和清除浏览数据。 并打开一个新的隐身模式窗口然后打开你