Skip to main content

Posts

Showing posts from May, 2020

How to take the Screenshot in Selenium WebDriver?

If we want to take the screenshot then we have to convert our WebDriver object into the screenshot object. we need to change the behavior of the drive to take the screenshot . We can do it by casting

How to handle the SSL certificate and Insure certificate in Selenium WebDriver?

We need to add capabilities in the chrome browser DESIRED CAPABILITIES IS THE CLASS WHO HELP TO CUSTOMIZED THE CHROME BROWSER. So first we need to create an object of the Desired Capabilities and then accept the SSL or Insure certificate. After this we need to create our local chrome driver option and provide the Desired Capabilities information to the local chrome driver option so that while creating the chrome driver object, we can pass the local chrome driver to pass the Desired Capabilities. below is the code to use.

How to handle “Time out receiving message from the renderer” in chrome driver?

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 It's solution is very simple. You just need to add below single line code in the driver initialization code