错误信息:
java.lang.RuntimeException: Could not start Selenium session: Failed to start new browser session: java.lang.RuntimeException: java.lang.RuntimeException: Firefox 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 like this:
*firefox c:\blah\firefox.exe
原因:找不到firefox(火狐不是默认安装位置自己换了位置的),不能打开浏览器
解决方案:
方法一:设置环境变量,将火狐的地址放进path变量中
方法二:将火狐的路径写进来,注意路径的\要用\\,其中一个\是转义的意思
即下面的"*firefox"改为 "*firefox D:\\study\\selenium\\Firefox\\firefox.exe"