3

I was using chrome webdriver in selenium. I noticed that my chrome version is 88.0.4324.104, However, I am unable to find the exact version for chrome driver as all I can find is below version. enter image description here

As this result, I got the following error when I run the script.

selenium.common.exceptions.SessionNotCreatedException: Message: session not created

from disconnected: unable to connect to renderer

I also read the post here, it has to be exactly the same version.

Can someone advise on this.

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
Zephyr
  • 1,332
  • 2
  • 13
  • 31

1 Answers1

1

As you are using chrome=88.0.4324.104 you need to use the matching ChromeDriver (matching the MAX version). So 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