我已经开始学习自动化测试,但我遇到了这个概念并且很难理解。我是这个概念的新手。所以..
什么是Firefox分析?我们如何使用selenium web driver更改Firefox配置文件
答案 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