Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit a96d32f

Browse files
gempesawjuliemr
authored andcommitted
fix(webdriver-manager): upcase in IE download url
The url for the Win32 version of the IEDriverServer is apparently case sensitive: _win32_ vs _Win32_
1 parent 9e03b78 commit a96d32f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/webdriver-manager

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ var binaries = {
5959
if (os.arch() == 'x64') {
6060
return urlPrefix + '_x64_' + versions.iedriver + '.zip';
6161
} else {
62-
return urlPrefix + '_win32_' + versions.iedriver + '.zip';
62+
return urlPrefix + '_Win32_' + versions.iedriver + '.zip';
6363
}
6464
}
6565
}

0 commit comments

Comments
 (0)