user739201
user739201

Reputation: 31

Timed out receiving message from renderer in selenium?

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?

Upvotes: 0

Views: 2213

Answers (1)

user739201
user739201

Reputation: 31

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.

Upvotes: 1

Related Questions