python selenium 执行完毕关闭chromedriver进程示例
人气:2因为使用多次以后发现进程中出现了很多chromedriver的残留,造成卡顿,所以决定优化一下。
这个问题困扰了楼主很久,百度谷歌查来查去都只有java,后面根据java和selenium结合看找出了python如何执行完把chromedriver进程关闭
Python的话控制chromedriver的开启和关闭的包是Service
from selenium.webdriver.chrome.service import Service
创建的时候需要把chromedriver.exe的位置写在Service的XXX部分,需要调用他的命令行方法,不然报错然后启动就可以了
c_service = Service('xxx') c_service.command_line_args() c_service.start() driver = webdriver.Chrome() driver.get(http://www.baidu.com)
关闭的时候用quit而不是采用close
close只会关闭当前页面,quit会推出驱动别切关闭所关联的所有窗口
最后执行完以后就关闭
driver.quit();c_service.stop()
嫌麻烦也可以直接使用python的os模块执行下面两句话结束进程
os.system('taskkill /im chromedriver.exe /F') os.system('taskkill /im chrome.exe /F')
以上这篇python selenium 执行完毕关闭chromedriver进程示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
您可能感兴趣的文章:
- Python使用Chrome插件实现爬虫过程图解
- Python爬虫谷歌Chrome F12抓包过程原理解析
- python+selenium+chrome批量文件下载并自动创建文件夹实例
- python+selenium+chromedriver实现爬虫示例代码
- selenium+python配置chrome浏览器的选项的实现
- python+selenium+Chrome options参数的使用
- Python3+Selenium+Chrome实现自动填写WPS表单
- 下载与当前Chrome对应的chromedriver.exe(用于python+selenium)
- 详解pyinstaller selenium python3 chrome打包问题
- Python使用selenium + headless chrome获取网页内容的方法示例
- Selenium chrome配置代理Python版的方法
- 使用Python解析Chrome浏览器书签的示例
加载全部内容