请指导我如何杀死IE驱动程序的实例。在我运行测试并完成测试后,浏览器正在退出,因为我使用了driver.quit()。但是发现在任务管理器中进行交叉检查时实例仍然处于运行状态。
代码的skelton:
driver=new InternetExplorerDriver(); //calling IE driver
testRun(); // run my test
driver.quit();
提前致谢
答案 0 :(得分:1)
我有一个方法,
public void ieKiller() throws Exception
{
final String KILL = "taskkill /IM ";
String processName = "IEDriverServer.exe"; //IE process
Runtime.getRuntime().exec(KILL + processName);
Wait(3000); //Allow OS to kill the process
}