Windows系统上,每次运行完selenium程序后,chromedriver.exe进程总是不能彻底关闭。网上参考了如下文章:https://www.jb51.net/article/201622.htmselenium操作chrome浏览器需要有ChromeDriver驱动来协助。webdriver中关浏览器关闭有两个方法,一个叫quit,一个叫close。/***Closethecurrentwindow,quittingthebrowserifit'sthelastwindowcurrentlyopen.*/voidclose();/***Quitsthisdriver,closingeveryass...
继续阅读 >
分类:关闭浏览器
2020
12-05
12-05
Python爬虫之Selenium实现关闭浏览器
前言:WebDriver提供了两个关闭浏览器的方法,一个是前边使用quit()方法,另一个是close()方法close():关闭当前窗口quit():关闭所有窗口quit()是关闭所有窗口,就不过多说了,测试一下close()fromseleniumimportwebdriverfromselenium.webdriver.common.keysimportKeysimporttimedriver=webdriver.Chrome()driver.get("http://www.baidu.com")time.sleep(2)#睡两秒,看一下效果driver.find_element_by_link_text...
继续阅读 >