当我运行(driver.quit)时,它打开firefox浏览器并按预期退出,但错误以" Unable to find executable for: taskkill"
给出。
我将环境变量PATH设置为" C:\ Windows \ System32"并运行测试。但我仍然遇到这个错误。
我正在使用Selenium-java-2.48.2.jar和Firefox 42.0
public void closeBrowser(){
try{
driver.quit();
}
catch(Exception ex){
System.out.println(ex.getMessage());
}
}