使用FirefoxDriver时报错Make sure firefox is installed问题

FirefoxDriver调用firefox浏览器的安装路径应为C盘的默认目录下,若firefox安装在其他目录下执行时会报错: 
Cannot find firefox binary in PATH. Make sure firefox is installed. OS appears to be: XP 
Build info: version: '2.25.0', revision: '17482', time: '2012-07-18 21:09:54' 
System info: os.name: 'Windows XP', os.arch: 'x86', os.version: '5.1', java.version: '1.6.0_10'
 
这是因为找不到firefox的原因。 
解决办法: 
1.重新安装firefox在默认路径下;  
OSExpected Location of Firefox
Linuxfirefox (found using "which")
Mac/Applications/Firefox.app/Contents/MacOS/firefox
Windows%PROGRAMFILES%\Mozilla Firefox\firefox.exe

2.直接用System.setProperty方法设置webdriver.firefox.bin的值  
Java代码   收藏代码
  1. package selenium.test.googleSearch;  
  2.   
  3. import org.openqa.selenium.WebDriver;  
  4. import org.openqa.selenium.firefox.*;  
  5. public class BaiduFirefoxDriver {  
  6.   
  7.     /** 
  8.      * @param args 
  9.      */  
  10.     public static void main(String[] args) {  
  11.         // TODO Auto-generated method stub  
  12.         System.setProperty("webdriver.firefox.bin""D:\\Program Files\\Mozilla Firefox\\firefox.exe");  
  13.         WebDriver driver=new FirefoxDriver();  
  14.         driver.get("http://www.baidu.com/");  
  15.     }  
  16.   
  17. }  

3.利用setCapability进行设置  
Java代码   收藏代码
  1. package selenium.test.googleSearch;  
  2.   
  3. import org.openqa.selenium.WebDriver;  
  4. import org.openqa.selenium.firefox.*;  
  5. import org.openqa.selenium.remote.DesiredCapabilities;  
  6. public class BaiduFirefoxDriver {  
  7.   
  8.     /** 
  9.      * @param args 
  10.      */  
  11.     public static void main(String[] args) {  
  12.         // TODO Auto-generated method stub  
  13.         DesiredCapabilities capability=DesiredCapabilities.firefox();  
  14.         capability.setCapability("firefox_binary",  
  15.         "D:\\Program Files\\Mozilla Firefox\\firefox.exe");  
  16.         WebDriver driver = new FirefoxDriver(capability);  
  17.         driver.get("http://www.baidu.com/");  
  18.     }  
  19.   
  20. }  

4.用FirefoxBinary类和public FirefoxDriver(FirefoxBinary binary, FirefoxProfile profile)这个构造方法  
Java代码   收藏代码
  1. package selenium.test.googleSearch;  
  2.   
  3. import java.io.File;  
  4.   
  5. import org.openqa.selenium.WebDriver;  
  6. import org.openqa.selenium.firefox.*;  
  7. public class BaiduFirefoxDriver {  
  8.   
  9.     /** 
  10.      * @param args 
  11.      */  
  12.     public static void main(String[] args) {  
  13.         // TODO Auto-generated method stub  
  14.         File pathToFirefoxBinary = new File("D:\\Program Files\\Mozilla Firefox\\firefox.exe");    
  15.         FirefoxBinary firefoxbin = new FirefoxBinary(pathToFirefoxBinary);    
  16.         WebDriver driver = new FirefoxDriver(firefoxbin,null);  
  17.         driver.get("http://www.baidu.com/");  
  18.     }  
  19.   
  20. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

慕城南风

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值