1

无法找到/打开 Firefox 二进制文件 - webdriver/robot 框架

我的测试在 java 和 Fitnesse 中运行良好。当通过带有 Internet Explorer 和 Chrome 的机器人框架执行它们时,它们也运行良好。但是,当我通过 Firefox 执行它们时,使用“new FirefoxDriver()”,我收到以下错误:

DEBUG   java.lang.ExceptionInInitializerError 
        at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java: 81) 
Caused by: java.lang.NullPointerException
org.openqa.selenium.firefox.FirefoxBinary.<clinit>(FirefoxBinary.java: 42) 
        ... 183 more 

在 FirefoxBinary 和 FirefoxDriver 类中,这些行对应于以下代码:

FirefoxBinary ln42-43 
 private static final String PATH_PREFIX = "/" + 
      FirefoxBinary.class.getPackage().getName().replace(".", "/") + "/"; 

and FirefoxDriver ln 80-82 
public FirefoxDriver(FirefoxProfile profile) { 
    this(new FirefoxBinary(), profile); 
  } 

我尝试在我的类路径、pythonpath(由机器人框架使用)和路径中设置 Firefox 二进制文件的路径。我还编写了以下代码行来尝试强制找到二进制文件:

System.setProperty("webdriver.firefox.bin", "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe");
DesiredCapabilities cap = new DesiredCapabilities();
cap.setCapability(FirefoxDriver.BINARY, "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe");

我试图在两台计算机上执行测试,我的工作机器和家用机器。此外,我尝试使用使用 firefox.exe –p 创建的 firefox 配置文件,并在 java 代码中创建一个。我已经尝试过 Firefox 6-8。不幸的是,这些事情都没有奏效。

我也在使用/曾经使用过:Java 1.6 Selenium 2.9.0/2.13.0 Windows 7

我不确定这是否相关,但作为一种解决方法,我一直试图让 Firefox 通过远程浏览器运行。我一直在尝试以下代码:

rcc = new RemoteControlConfiguration();
rcc.setPort(4447);
rcc.setPortDriversShouldContact(4447);
rcc.setInteractive(true);
rcc.setSingleWindow(true);
rcc.setTimeoutInSeconds(30);
ss = new SeleniumServer(rcc);
ss.start();
DesiredCapabilities cap = new DesiredCapabilities();

cap.setJavascriptEnabled(true);
cap.setBrowserName("firefox");
URL url = new URL ("http://www.google.com/");
driver = new RemoteWebDriver(url,cap);

但是,当我运行上述内容时,我收到以下错误消息:

Exception in thread "main" org.openqa.selenium.WebDriverException: Error communicating with the remote browser. It may have died.
Build info: version: '2.13.0', revision: '14794', time: '2011-11-18 17:49:47'
System info: os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.7.0'
Driver info: driver.version: Selenium2Driver
    at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:412)

有谁知道如何解决我的任何一个问题?

任何帮助将不胜感激,我对这个问题感到非常困惑。在 Internet Explorer 已经运行的情况下尝试让 Firefox 运行两天……感觉好像世界即将结束。

谢谢,詹姆斯

编辑:1

我可以使用 selenium-server 来运行 Firefox。

4

4 回答 4

0

我不明白您为什么没有在远程网格 config.json 文件中配置 Firefox 二进制文件?我就是这样做的。然后,您的 DesiredCapabilities 对象将不需要定义它。可以在这里找到提示。

如果可行,JSON 文件中的行可能如下所示:

"binary": "C:/Program Files/Mozilla Firefox/firefox.exe",

我猜它不允许您从代码中动态设置二进制位置,但也许您可以尝试这种方式来证明它是否应该作为故障排除步骤工作。

于 2013-11-17T17:32:11.063 回答
0
FirefoxProfile profile = new FirefoxProfile(); 
FirefoxBinary binary = new FirefoxBinary(new File("C:\\path to firefox\\firefox.exe")); 
driver = new FirefoxDriver(binary, profile);

尝试这个

于 2014-01-03T05:44:05.680 回答
0

James,仅供参考,RemoteWebDriver 的 URL 在上面的帖子中显示不正确。应该更像“localhost:4444/wd/hub”;?有趣的是,我在使用 Web 驱动程序时遇到了相反的问题,通过 RemoteWebDriver 启动 Firefox 时出现问题,但 Firefox 通过本机 FirefoxDriver 运行良好。IE 在远程上运行良好。– 大卫 2011 年 12 月 4 日在 4:51

谢谢大卫!

于 2012-11-07T03:54:08.040 回答
0

由于 selenium web 驱动程序无法找到 Firefox 的 .exe 文件而导致的此类问题。请检查 C:\Program Files (x86)\Mozilla Firefox 的位置是否有 exe 文件,不要忘记设置具有 java jdk 路径的环境变量。

来源:- 阅读 [已解决无法在 PATH Selenium 中找到 firefox 二进制文件][1] http://www.tech4crack.com/solved-cannot-find-firefox-binary-in-path/

于 2015-08-10T08:43:35.500 回答