0

Hi I am facing following error while executing my UI test through selenium webdriver in chrome.

ChromeDriver: 81.0.4044.69.

[1586841277.704][SEVERE]: Timed out receiving message from renderer: 0.100

Can anybody help me to fix this?

user739201
  • 31
  • 7

1 Answers1

1

I don't know that it is a recommended practice or not but after search on google i found this following temporary solution for this.

Set the browser property for chrome:

System.setProperty(ChromeDriverService.CHROME_DRIVER_SILENT_OUTPUT_PROPERTY, "true");
System.setProperty("webdriver.chrome.driver", DriverFactory.getChromeDriverExePath());

driver = new ChromeDriver();

for reference : https://www.youtube.com/watch?v=C8GuQViFD3Y

Hope this will solve this problem for many of you.

Rui Jarimba
  • 11,166
  • 11
  • 56
  • 86
user739201
  • 31
  • 7