如何在webdriver中杀死IE服务器的命令行服务器

时间:2013-03-28 11:15:32

标签: webdriver selenium-webdriver

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

代码的skelton:

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

提前致谢

1 个答案:

答案 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
} 

source