Reputation: 1352
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.
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.
Upvotes: 3
Views: 2776
Reputation: 193338
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:
You can find a couple of relevant detailed discussions in:
Upvotes: 1