修改firefox配置文件模板

时间:2013-01-10 15:13:15

标签: java selenium firefox testing webdriver

我想修改一个firefox模板,webdriver将通过

创建临时配置文件
new FirefoxDriver();

我是linux用户(ubuntu)。有人知道这个模板的位置吗?

1 个答案:

答案 0 :(得分:0)

我们不修改解决方案中的实际文件。 当然,这是C#,但它应该非常相似:

FirefoxProfile profile = new FirefoxProfile() {AcceptUntrustedCertificates = true};
profile.SetPreference("webdriver_assume_untrusted_issuer", false);
Driver = new FirefoxDriver(profile);
Driver.Manage().Window.Maximize();