有没有与firefox最新版本兼容的webdriver版本(3.0.0以上)?

时间:2017-04-26 06:33:52

标签: selenium firefox selenium-webdriver webdriver geckodriver

webdriver 3.4.0是否有兼容的firefox版本。 你有没有任何工作webdriver版本(3.0.0之后)对抗10号窗口上的最新firefox版本? 请让我知道您的输入以及geckdriver版本。

由于 阿南德

2 个答案:

答案 0 :(得分:1)

firefox浏览器46.0版本,它肯定会工作,我尝试过。

如果有任何问题,请告诉我

答案 1 :(得分:1)

使用Selenium 3.4.0以及最新的gecko驱动程序0.16& Mozila Firefox 53.0,您需要下载gecko驱动程序并保存。在代码中提到gecko驱动程序的绝对位置,如下所示:

public void sampleMethod() 
{

    System.setProperty("webdriver.gecko.driver", "C:\\your_directory\\geckodriver.exe");
    WebDriver driver= new FirefoxDriver();
    driver.manage().window().maximize();
    driver.get("http://your_url.com");


}

如果它能解决您的问题,请告诉我。