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");
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)