我试图告诉org.openqa.selenium.firefox.FirefoxDriver
Selenium
使用现有的个人资料及其Cookie和代理设置,所以我正在做:
FirefoxProfile firefoxProfile = new FirefoxProfile(new File("C:\\Users\\name\\AppData\\Local\\Mozilla\\Firefox\\Profiles\\u72231ej.other"));
WebDriver driver = new FirefoxDriver(firefoxProfile);
但似乎无论如何都会创建新的个人资料。
答案 0 :(得分:2)
FirefoxProfile ffprofile = new FirefoxProfile();
ffprofile.setPreference(); //Set your preference here
FirefoxDriver driver = new FirefoxDriver(ffprofile);
您可以在firefox地址栏中输入about:config来获取首选项列表。 新驱动程序将具有应用您的设置的配置文件。