0

Using selenium & Chrome webdriver, I'm getting below exception on trying to launch. I have gone through lot of posts and tried all possible ways. I'm using compatible chrome browser and chrome drivers versions -

  • Version 80.
  • Java - 1.8
  • Windows 10 os

The same test when i run on my personal computer, its working. But it's giving below error on my organization s machine. Also, no issues if I use edge drivers.

org.openqa.selenium.SessionNotCreatedException: session not created 
disconnected: unable to send message to renderer

Any thoughts to solve this?

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
user2496132
  • 41
  • 2
  • 8

3 Answers3

0

Check for chromedriver version in organization's machine. Please update your chromedriver with lastest version in organization machine. Issue will get resolve

0

The ChromeDriver Version you are using in your code might be different than the Chrome Browser installed in your system.

Check and download the same version of driver as of your browser version.

0

You need to use the matching ChromeDriver (matching MAX number) with respect to the installed version installed in your system.

As an example if you are using the current chrome=88.0.4324.104 effectively you can use either of the following versions of ChromeDriver:


References

You can find a couple of relevant detailed discussions in:

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352