Selenium Web驱动程序异常"无法找到可执行文件:taskkill"

时间:2016-01-29 06:18:19

标签: java selenium-webdriver testng

当我运行(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());
        }
    }

1 个答案:

答案 0 :(得分:0)

我建议使用driver.close()代替driver.quit()。要了解它们之间的区别,请参阅此question