使用selenium时,UnreachableBrowserException:

时间:2015-03-25 08:56:37

标签: selenium xpath selenium-webdriver css-selectors

此错误的可能原因是什么

Error communicating with the remote browser. It may have died.

2 个答案:

答案 0 :(得分:0)

尝试使用以下定位器

By.cssSelector("input[name='myButton']")

您提供了错误的标记名称(选择而非输入),这就是它抛出异常的原因。

答案 1 :(得分:0)

下面的代码解决了问题

try {
        Runtime.getRuntime().exec("taskkill /F /IM IEDriverServer.exe");
        Runtime.getRuntime().exec("taskkill /F /IM conhost.exe");
    } catch (IOException e) {
        e.printStackTrace();
    }