selenium与Firefox浏览器的兼容问题

由于Firefox版本更新较快,而selenium更新比较慢,所以初学者经常会遇到,浏览器调用不起 来,或者浏览器打开但是无法输入地址的情况。

自己亲身实践,现将已经匹配成功的版本说明一下

selenium版本:
selenium-java-3.0.0.zip
selenium各个版本的jar包下载地址:http://selenium-release.storage.googleapis.com/index.html

Firefox版本:
Firefox Setup 47.0.1.exe
Firefox各个版本下载地址:https://ftp.mozilla.org/pub/firefox/releases/

Firefox驱动:
geckodriver-v0.24.0-win64.zip
Firefox驱动下载地址:https://github.com/mozilla/geckodriver/releases

下载以上所用到的对应版本,用eclipse写一段简单的代码,用来打开百度网页,代码如下:

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class demo {
public static void main(String[] args) {
WebDriver driver;//声明driver
System.setProperty(“webdriver.firefox.marionette”, “D:\wangxiaoyu\selenium\geckodriver-v0.24.0-win64\geckodriver.exe”);//这是我的驱动路径
driver=new FirefoxDriver();
driver.get(“http://www.baidu.com”);
driver.close();
}
}

运行之后成功打开百度网页,就成功了。

你可能感兴趣的:(selenium,软件测试,Java,selenium)