Max Heo
Max Heo

Reputation: 11

Old version chrome(v48), is there a chromedriver fit to old chrome?

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

Answers (2)

undetected Selenium
undetected Selenium

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.


A word of caution

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.


Solution

The best approach would be to ensure that:

Upvotes: 0

Guy
Guy

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

Related Questions