什么是firefox配置文件,我们如何使用selenium webdriver更改firefox配置文件

时间:2015-07-29 16:57:38

标签: firefox selenium-webdriver profiling

我已经开始学习自动化测试,但我遇到了这个概念并且很难理解。我是这个概念的新手。所以..

什么是Firefox分析?我们如何使用selenium web driver更改Firefox配置文件

1 个答案:

答案 0 :(得分:0)

Selenium WebDriver使用默认配置文件启动firefox。如果您想使用自定义设置启动firefox,可以使用Firefox配置文件。

例如,如果要向Firefox添加任何扩展名,只需使用。

即可
FirefoxProfile fp = new FirefoxProfile();
//fp.addExtension(extensionToInstall);
WebDriver driver = new FirefoxDriver(fp); // here you can launch your webdriver with your customized firefox profile.

另一种使用firefox配置文件的方法是here