2012年04月06日   码农之路   6,231 次浏览
最近在捣鼓selenium,selenium是一款web自动化测试工具,具体的我就不说了,每一次用就遇到一个问题,我把环境搭好后,在eclipse 里面跑老是报错:
java.lang.RuntimeException: Could not start Selenium session: Failed to start new browser session: java.lang.RuntimeException: Firefox 3 could not be found in the path!
Please add the directory containing ”firefox.exe” to your PATH environment
variable, or explicitly specify a path to Firefox 3 like this:
*firefox3 c:\blah\firefox.exe
我的firefox版本是11,selenium用的是2.20.0,selenium是在官网下的最新版,想着应该是支持firefox的,但是一直报错,到网上找了一下方法,终究没找到最终解决办法,后来试了一下其它的方法就解决了
解决方法:
1、先改代码,在代码里面加上安装路径,可能是因为selenium server不能识别其它盘,而我装在D盘的,所以我就改了下,加上路径,再启动服务进行运行,还是不行,卡在那不动了,后台提示一直在加载firefox浏览器
selenium = new DefaultSelenium(“localhost”, 4444, “*firefox D:/Program Files/Mozilla Firefox/firefox.exe”, “http://www.baidu.com/“);
2、然后我再打开selenium-server-standalone-2.20.0.jar(在官网下的),查找两个目录:customProfileDirCUSTFFCHROME和customProfileDirCUSTFF,搜索install.rdf文件,将<em:maxVersion>12.*</em:maxVersion>改成我的firefox版本11 ,<em:maxVersion>11.0.*</em:maxVersion>,就OK了,再运行就通过了,大功告成!
>>> Hello World <<<
这篇内容是否帮助到你了呢?
如果你有任何疑问或有建议留给其他朋友,都可以给我留言。