Reputation: 11
I have a conditional environment for chrome(it version must be v48 for my company rules.)
But I can't find chromedriver for that version(v48 chrome).
please tell be the way for use that.
OS : Windows embedded standard SP3.
when my program call a chromedriver(for selenium) in a code, I got a error message
the procedure entry point EventRegister could not be located Advapi32.dll
Upvotes: -1
Views: 144
Reputation: 193048
Incase you are looking for the compatible ChromeDriver for Chrome v48:
Supports Chrome v43-48
Supports Chrome v46-50
You can download chromedriver=2.20 and chromedriver=2.21 from these locations.
Though chromedriver=2.20 and chromedriver=2.21 would be compatible with chrome=48.0 but both the binaries won't be compatible with the current release of Selenium v3.141.59.
The best approach would be to ensure that:
Upvotes: 0
Reputation: 50809
You can find older versions in https://chromedriver.storage.googleapis.com/index.html. According to the notes ChromeDriver v2.21
support Chrome 48.
Upvotes: 1