selenium框架中driver.close()和driver.quit()关闭浏览器
Windows系统上,每次运行完selenium程序后,chromedriver.exe进程总是不能彻底关闭。 网上参考了如下文章:https://www.jb51.net/article/201622.htm selenium操作chrome浏览器需要有ChromeDriver驱动来协助。webdriver中关浏览器关闭有两个方法,一个叫quit,一个叫close。 /** * Close the current window, quitting the browser if it's the last window currently open. */ void close(); /*
用户评论