本文主要是介绍chromedriver headless 模式屏蔽日志,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
headless无头浏览器模式下有很多日志信息,如下,
将日志等级设定为 3 即可
chrome_options.add_argument('log-level=3')
#info(default) = 0
#warning = 1
#LOG_ERROR = 2
#LOG_FATAL = 3
DevTools listening on ws://127.0.0.1:55019/devtools/browser/472a41e1-3529-48c2-8f96-4b2ae0861b12
[1217/154711.234:INFO:CONSOLE(28)] "[ Logic-error ] [object Object]", source: https://webresource.c-ctrip.com/code/cquery/cQuery_110421.js (28)
[1217/154711.289:INFO:CONSOLE(0)] "A cookie associated with a cross-site resource at http://baidu.com/ was set without the `SameSite` attribute. A future release of Chrome will only deliver cookies with cross-site requests if they are set with `SameSite=None` and `Secure`. You can review cookies in developer tools under Application>Storage>Cookies and see more details at https://www.chromestatus.com/feature/5088147346030592 and
https://www.ch
这篇关于chromedriver headless 模式屏蔽日志的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!