错误消息
2014年8月1日下午5:07:52 org.openqa.selenium.os.UnixProcess $ SeleniumWatchDog destroyHarder 信息:命令无法完全关闭。强行摧毁(v2)。 org.openqa.selenium.os.UnixProcess$SeleniumWatchDog@169751d
代码:
public void login(){
WebElement loginBtn;
loginBtn= driver.findElement(By.className("cr-btn"));
//loginBtn.click();
答案 0 :(得分:5)
这是一个Firefox插件问题。我用谷歌搜索了3个小时,找到了解决方案!
要解决这个问题,你必须关闭@After部分中的驱动程序:
@After
public void Ending() {
try{
driver.close();
Thread.sleep(3000);
}
catch(Exception b){
b.getMessage();
}
}
祝你好运!