当我尝试在 Selenium IDE 中使用 Webdriver 回放运行测试时,我不断收到以下错误。
Caused by: org.openqa.selenium.WebDriverException: Cannot find firefox binary in PATH. Make sure firefox is installed. OS appears to be: VISTA
Build info: version: ’2.32.0′, revision: ’6c40c18′, time: ’2013-04-09 17:22:56′
System info: os.name: ‘Windows 7′, os.arch: ‘amd64′, os.version: ’6.1′, java.version: ’1.6.0_39′
Driver info: driver.version: FirefoxDriver
at org.openqa.selenium.firefox.internal.Executable.(Executable.java:72)
at org.openqa.selenium.firefox.FirefoxBinary.(FirefoxBinary.java:59)
at org.openqa.selenium.firefox.FirefoxBinary.(FirefoxBinary.java:55)
at org.openqa.selenium.firefox.FirefoxDriver.getBinary(FirefoxDriver.java:175)
at org.openqa.selenium.firefox.FirefoxDriver.(FirefoxDriver.java:100)
… 14 more
该错误提到在 PATH 中找不到 firefox 二进制文件。我更新了路径中的 Firefox 二进制文件,但仍然收到相同的错误消息。测试用例中使用的函数是一个自定义用例和 waitforelementpresent。
这是我在路径 C:\Program Files (x86)\Firefox ESR 17 中的变量值
我该如何解决这个问题?