gpt4 book ai didi

java - 如何让 FirefoxDriver 使用现有的配置文件?

转载 作者:行者123 更新时间:2023-11-30 04:58:20 26 4
gpt4 key购买 nike

我试图告诉Seleniumorg.openqa.selenium.firefox.FirefoxDriver使用现有的配置文件及其cookies和代理设置,所以我我正在做:

FirefoxProfile firefoxProfile = new FirefoxProfile(new File("C:\\Users\\name\\AppData\\Local\\Mozilla\\Firefox\\Profiles\\u72231ej.other"));

WebDriver driver = new FirefoxDriver(firefoxProfile);

但似乎无论如何都会创建一个新的配置文件。

最佳答案

FirefoxProfile ffprofile = new FirefoxProfile();
ffprofile.setPreference(); //Set your preference here
FirefoxDriver driver = new FirefoxDriver(ffprofile);

您可以通过在 Firefox 地址栏中输入 about:config 来获取首选项列表。新驱动程序将有一个配置文件,其中应用了您的设置。

关于java - 如何让 FirefoxDriver 使用现有的配置文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7771592/

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