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

Commit

Permalink
fix(webdriver-manager): upcase in IE download url
Browse files Browse the repository at this point in the history
The url for the Win32 version of the IEDriverServer is apparently case
sensitive: _win32_ vs _Win32_
  • Loading branch information
gempesaw authored and juliemr committed Feb 10, 2014
1 parent 9e03b78 commit a96d32f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/webdriver-manager
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var binaries = {
if (os.arch() == 'x64') {
return urlPrefix + '_x64_' + versions.iedriver + '.zip';
} else {
return urlPrefix + '_win32_' + versions.iedriver + '.zip';
return urlPrefix + '_Win32_' + versions.iedriver + '.zip';
}
}
}
Expand Down

0 comments on commit a96d32f

Please sign in to comment.