错误:线程“main”中的异常org.openqa.selenium.remote.UnreachableBrowserException:与远程浏览器通信时出错

时间:2016-07-15 10:07:07

标签: selenium-webdriver

代码:

import java.util.concurrent.TimeUnit;    
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class webdriver {
public static void main(String[] args) {
    // TODO Auto-generated method stub
WebDriver driver = new FirefoxDriver();
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

driver.navigate().to("http://www.calculator.net");
    }
}

Firefox:47.0 Selenium WebDriver:2.53.1

请指导如何继续。

1 个答案:

答案 0 :(得分:0)

希望以下几点对您有帮助。:

  1. 浏览器实例未正确关闭。确保关闭浏览器会话。
  2. Firefox浏览器和Webdriver版本不兼容。
  3. 您的端口已耗尽。尝试根据Microsoft知识库文章https://support.microsoft.com/en-us/kb/196271中的分辨率增加限制并重新启动计算机