慕粉2037378764
2017-05-14 16:11
Exception in thread "main" org.openqa.selenium.WebDriverException: Cannot find firefox binary in PATH. Make sure firefox is installed. OS appears to be: VISTA
Build info: version: '3.4.0', revision: 'unknown', time: 'unknown'
System info: host: 'LU', ip: '192.168.219.1', os.name: 'Windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.8.0_31'
Driver info: driver.version: FirefoxDriver
at org.openqa.selenium.firefox.internal.Executable.<init>(Executable.java:75)
at org.openqa.selenium.firefox.FirefoxBinary.<init>(FirefoxBinary.java:60)
at org.openqa.selenium.firefox.FirefoxBinary.<init>(FirefoxBinary.java:56)
at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:127)
at openliu.main(openliu.java:9)
看这个报错应该是firefox安装路径不是默认路径。
解决方法:方法1、最简单的重新安装firefox到默认路径。哈哈
方法2、直接用System.setPropert方法设置webdriver.firefox.bin的值,如
System.setProperty("webdriver.firefox.bin","D:\\Program Files\\Mozilla Firefox\\firefox.exe");
方法3、 用FirefoxBinary类和public FirefoxDriver(FirefoxBinary binary, FirefoxProfile profile)这个构造方法,直接上代码
File pathToFirefoxBinary = new File("D:\\Program Files\\Mozilla Firefox\\firefox.exe"); FirefoxBinary firefoxbin = new FirefoxBinary(pathToFirefoxBinary); WebDriver driver = new FirefoxDriver(firefoxbin,null);//这里使用这个构造方法。
应该还可以在环境变量里面设置firefox的路径也可以,有兴趣的可以试一下。
注:有人可能会不知道webdriver.firefox.bin,可以看一下源码,其中
org.openqa.selenium.firefox.internal.Executable.locateFirefoxBinaryFromSystemProperty()
方法第一句
String binaryName = System.getProperty("webdriver.firefox.bin");
说明默认的时候取的就是这个值,重新设置一下。
自动化测试之selenium工具使用
51928 学习 · 192 问题
相似问题