使用硒时,UnreachableBrowserException:

While using selenium, UnreachableBrowserException:

出现此错误的可能原因是什么

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

试试下面的定位器

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

你给出了错误的标签名称(select 而不是 input)这就是它抛出异常的原因。

下面的代码解决了这个问题

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