如何使用 Selenium 和 Python 在控制台中跳过调试日志
Posted
技术标签:
【中文标题】如何使用 Selenium 和 Python 在控制台中跳过调试日志【英文标题】:How to skip the DEBUG logs with in the console using Selenium and Python 【发布时间】:2022-01-19 11:33:39 【问题描述】:我在 python 中使用 Selenium。 我在输出中得到了这些:
我想跳过。 所以请告诉我如何跳过这些警告。
【问题讨论】:
您应该发布您正在使用的库,但请查看***.com/questions/11029717/… 【参考方案1】:要抑制 DEBUG 日志,您可以通过 Options()
的实例使用 add_experimental_option()
,如下所示:
options = Options()
options.add_experimental_option('excludeSwitches', ['enable-logging'])
driver = webdriver.Chrome(executable_path=r'C:\BrowserDrivers\chromedriver.exe', options=options)
driver.get("https://www.google.com/")
【讨论】:
以上是关于如何使用 Selenium 和 Python 在控制台中跳过调试日志的主要内容,如果未能解决你的问题,请参考以下文章
使用 Selenium 和 Python,如何检查按钮是不是仍然可点击?
如何使用 python 和 Selenium 将 cookie 保存在浏览器中
如何使用 Python 和 Selenium 进行分页抓取页面