Skip to content

Commit bcc61ce

Browse files
committed
Force 64-bit Geckodriver on Windows
1 parent a50f366 commit bcc61ce

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

seleniumbase/console_scripts/sb_install.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,7 @@ def main():
106106
file_name = "geckodriver-%s-linux64.tar.gz" % latest_version
107107
else:
108108
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:
109+
elif "win32" in sys_plat or "win64" in sys_plat or "x64" in sys_plat:
112110
file_name = "geckodriver-%s-win64.zip" % latest_version
113111
else:
114112
raise Exception("Cannot determine which version of Geckodriver "

0 commit comments

Comments
 (0)