I am running python script (complete script link below) for selenium test using Chrome Canary. The test seems to be running fine, however, there are lots of error/warning/in
If "--log-level" doesn't work for you (as of 75.0.3770.100 it didn't for me), this should:
options = webdriver.ChromeOptions()
options.add_experimental_option('excludeSwitches', ['enable-logging'])
driver = webdriver.Chrome(executable_path='', options=options)
see:
https://bugs.chromium.org/p/chromedriver/issues/detail?id=2907#c3
Python selenium: DevTools listening on ws://127.0.0.1