Selenium Python: listening DevTools by ws: //127.0.0.1

Today I received this message on the console when starting selenium using chrome. How can I suppress this?

DevTools listening on ws://127.0.0.1:12740/devtools/browser/97101fe4-3b1f-42b0-b5c8-373cc18040b6

Relevant Code:

from selenium import webdriver
driver = webdriver.Chrome(executable_path='c:/bin/chromedriver233')

I get the same message using version 2.30 of the chrome rib.

I have not received this message before. The only change I made was updating chrome to version 62.0.3202.94 (Official Build) (64-bit)

Python 3.6.3 64, Selenium 3.4.3, Windows 7 64.

EDIT: I posted a question on the Chrome product forum at https://productforums.google.com/forum/#!topic/chrome/Dlk2j_JpmxE;context-place=forum/chrome

+4
source share
1 answer

, , :

options.add_argument('--log-level=3')

, , , . :). , .

+2

Source: https://habr.com/ru/post/1689567/


All Articles