MicrosoftEdge / EdgeWebDriver

Feedback and discussions about WebDriver for Microsoft Edge
MIT License
55 stars 7 forks source link

Edge 119.0.2151.44 disable DevTools logging #124

Open aeiplatform opened 11 months ago

aeiplatform commented 11 months ago

After updating Edge to version 119.0.2151.44 over the weekend, selenium started logging my browser junk again.

I am unable to disable DevTools logging:

options.add_experimental_option("excludeSwitches", ["enable-logging"])

Tried even some of the old ways:

options.add_argument('--disable-dev-shm-usage')
options.add_argument('--disable-logging')
options.add_argument("--log-level=3")
options.add_argument("--silent")

image

bwalderman commented 9 months ago

Hi @aeiplatform , excluding the "enable-logging" switch should be all you need. Can you verify if the unwanted log output is still appearing on Edge 120?

aeiplatform commented 9 months ago

I upgraded to the latest version of Edge and the problem persists.