当前位置:首页 >> 脚本专栏

Selenium关闭INFO:CONSOLE提示的解决

参考:https://stackoverflow.com/questions/33983860/hide-chromedriver-console-in-python"color: #ff0000">1. 问题起因:

 Selenium设置了headless,导致cmd控制台不断输出CONSOLE信息

chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu') # 上面三行代码就是为了将Chrome不弹出界面

让人头疼的INFO:CONSOLE,不断输出ing

Selenium关闭INFO:CONSOLE提示的解决

2. 解决:

2.1 修改源码:External Libraries \ site-packages \ selenium \ webdriver \ common \ services.py

Selenium关闭INFO:CONSOLE提示的解决 

Selenium关闭INFO:CONSOLE提示的解决 

2.2 编辑service.py,默认是可读文件,会提示是否修改,选择运行就可以

添加:

from win32process import CREATE_NO_WINDOW

Selenium关闭INFO:CONSOLE提示的解决

找到start() Popen添加,如下图:

creationflags=CREATE_NO_WINDOW

Selenium关闭INFO:CONSOLE提示的解决 

3. 再次运行

干净清爽,舒服极了!

Selenium关闭INFO:CONSOLE提示的解决