DEV Community

Cover image for Selenium Chrome (version 80 & 81) warnings
Karthick Srinivasan
Karthick Srinivasan

Posted on • Updated on

Selenium Chrome (version 80 & 81) warnings

Since the release of Chrome version 80, we all have been getting the 'Timeout warning'. It repeats itself until the browser is opened. Do you want to get rid of selenium chrome driver warnings?

Here is the simple solution.
Add the below line of code while setting up the driver properties.

System.setProperty("webdriver.chrome.silentOutput", "true"); 
Enter fullscreen mode Exit fullscreen mode

It's a known bug in the versions 80&81 of Chrome browser. Though it will be fixed in upcoming releases, if you don't want to downgrade to version 79 or below, this will help.

Top comments (0)