gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 05:22:38 24 4
gpt4 key购买 nike

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

代码骨架:

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

提前致谢

最佳答案

我给你一个方法

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

关于webdriver - 如何在 webdriver 中杀死 IE 服务器的命令行服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15680363/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com