gpt4 book ai didi

Firefox webdriver 始终打开首次运行页面

转载 作者:行者123 更新时间:2023-12-03 07:05:03 26 4
gpt4 key购买 nike

如何为 FF 彻底禁用此“首次运行”页面?

创建 FF 驱动程序后,它会打开选​​项卡 - https://www.mozilla.org/en-US/firefox/42.0/firstrun/learnmore/以及带有目标页面的附加选项卡。

最佳答案

要关闭这个烦人的起始页:

More protection. The most privacy. Mozilla Firefox firstrun screen

在 C# 和 Selenium 2.48 中我找到了以下解决方案:

FirefoxProfile prof = new FirefoxProfile();
prof.SetPreference("browser.startup.homepage_override.mstone", "ignore");
prof.SetPreference("startup.homepage_welcome_url.additional", "about:blank");
Driver = new FirefoxDriver(prof);

...它再也不会打扰你了。

注意:单独使用其中一项设置也可以工作。我将它们一起使用以使其防弹。

关于Firefox webdriver 始终打开首次运行页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33937067/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com