I am getting this Timeout problem while i was working in chromedriver 81 also Chrome Browser version is same 81.
[1582678866.122][SEVERE]: Timed out receiving message from renderer: 0.100
This is the problem that we were facing while working on ChromeDriver
This will stop to show above message in console while run the script.
x
This will stop to show above message in console while run the script.
x
It's solution is very simple. You just need to add below single line code in the driver initialization code
System.setProperty("webdriver.chrome.driver", ".\\chromedriver.exe");
System.setProperty(ChromeDriverService.CHROME_DRIVER_SILENT_OUTPUT_PROPERTY,"true");
WebDriver driver = new ChromeDriver();
System.setProperty(ChromeDriverService.CHROME_DRIVER_SILENT_OUTPUT_PROPERTY,"true");
WebDriver driver = new ChromeDriver();
Comments
Post a Comment