当运行selenium webdriver脚本时,它会重定向到第一个运行页面https://www.mozilla.org/en-US/firefox/44.0.2/firstrun/learnmore/

时间:2016-03-03 09:35:21

标签: selenium-webdriver

我正在尝试运行我的selenium web驱动程序脚本,但它重定向到firefox的第一个运行页面。 enter image description here

我使用的是firefox版本44.0.2。 如何禁用它并运行我的脚本。

我已经提到链接Firefox webdriver opens first run page all the time但是没有得到解决方案,而且我已经将selenium web驱动程序更新到版本2.52但是根本没有工作

请帮助您解答

由于

1 个答案:

答案 0 :(得分:1)

我认为这种情况正在发生,因为新问题出现在Mozilla firefox的最新更新中。

这也发生在我身上。

要解决此问题,您需要将setPreference设置为xpinstall.signatures.required", false到firefox配置文件,然后将其传递给驱动程序对象

firefoxProfile.setPreference("xpinstall.signatures.required", false);

下面的代码对我来说很好。

static WebDriver driver=null;
public static void main(String[] args) {
    final FirefoxProfile firefoxProfile = new FirefoxProfile();
    firefoxProfile.setPreference("xpinstall.signatures.required", false);
    driver = new FirefoxDriver(firefoxProfile);
    driver.get("https://www.google.de/");

希望它会对你有所帮助:)。