Selenium WebDriver(1)——入门篇 ---遇到的一些问题

当使用WebDriver driver = new FirefoxDriver();

1.//指定火狐浏览器的安装路径

System.setProperty("webdriver.firefox.bin", "D:\\ludashi\\Mozilla Firefox\\firefox.exe");


遇到:火狐浏览器可以打开,但是不能去执行自动化操作

org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms. Firefox console output:

四月 07, 2017 3:19:02 下午 org.openqa.selenium.os.UnixProcess$SeleniumWatchDog destroyHarder
信息: Command failed to close cleanly. Destroying forcefully (v2). org.openqa.selenium.os.UnixProcess$SeleniumWatchDog@393671df
Exception in thread "main" org.openqa.selenium.WebDriverException: Failed to connect to binary FirefoxBinary(D:\ludashi\Mozilla Firefox\firefox.exe) on port 7055; process output follows: 


是由于 selenium webdriver的版本和火狐浏览器的版本不匹配,这里我使用


 
            org.seleniumhq.selenium  
            selenium-java  
            2.43.1  
       
 


火狐浏览器使用Firefox 32.0.1

你可能感兴趣的:(selenium)