We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a50f366 commit bcc61ceCopy full SHA for bcc61ce
seleniumbase/console_scripts/sb_install.py
@@ -106,9 +106,7 @@ def main():
106
file_name = "geckodriver-%s-linux64.tar.gz" % latest_version
107
else:
108
file_name = "geckodriver-%s-linux32.tar.gz" % latest_version
109
- elif "win32" in sys_plat:
110
- file_name = "geckodriver-%s-win32.zip" % latest_version
111
- elif "win64" in sys_plat or "x64" in sys_plat:
+ elif "win32" in sys_plat or "win64" in sys_plat or "x64" in sys_plat:
112
file_name = "geckodriver-%s-win64.zip" % latest_version
113
114
raise Exception("Cannot determine which version of Geckodriver "
0 commit comments