如何在WebDriver测试中更改Firefox设置?

时间:2014-06-05 07:41:40

标签: python selenium selenium-webdriver webdriver selenium-firefoxdriver

我在Firefox上用Python运行WebDriver测试。我已经配置了Firefox以确保在当前选项卡中打开社交网站的所有链接。我特意做了以下两项修改

browser.link.open_newwindow.restriction then,  change the value to 0 (zero)
browser.link.open_newwindow and change the value to 1 (one)

可以在https://support.mozilla.org/en-US/questions/970999找到。

我的WebDriver Firefox设置包含

from selenium.webdriver.firefox.webdriver import WebDriver
from selenium.webdriver.common.action_chains import ActionChains

success = True
wd = WebDriver()
wd.implicitly_wait(60)

如何在开始测试代码之前将设置添加到上述设置中?

修改

当我尝试更改browser.link.open_newwindow

的值时,出现以下错误
Exception in thread "main" java.lang.IllegalArgumentException: Preference     browser.link.open_newwindow may not be overridden: frozen value=2, requested value=1
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:120)
    at org.openqa.selenium.firefox.Preferences.checkPreference(Preferences.java:223)
    at org.openqa.selenium.firefox.Preferences.setPreference(Preferences.java:161)
    at org.openqa.selenium.firefox.FirefoxProfile.setPreference(FirefoxProfile.java:230)
    at tmp.main(tmp.java:21)

1 个答案:

答案 0 :(得分:3)

您可以使用此类个人资料设置偏好设置。

FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("browser.link.open_newwindow.restriction", 0);
profile.setPreference("browser.link.open_newwindow", 1);
WebDriver webDriver =  new FirefoxDriver(profile);

python代码可能看起来像这样,但我现在无法测试。

from selenium import webdriver
profile = webdriver.FirefoxProfile();
profile.set_preference("browser.link.open_newwindow.restriction", 0);
profile.set_preference("browser.link.open_newwindow", 1);
wd =  webdriver.Firefox(profile);

来源:FirefoxDriver Tips & Tricks