4

请指导我如何杀死 IE 驱动程序的实例。在我运行测试并完成后,浏览器正在退出,因为我使用了 driver.quit()。但是在任务管理器中交叉检查时发现实例仍然处于运行状态。

代码骨架:

driver=new InternetExplorerDriver(); //calling IE driver 
testRun(); // run my test                                                                                          
driver.quit();

提前致谢

4

1 回答 1

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
} 

资源

于 2013-05-14T09:43:22.827 回答