Skip to content

Commit b67a5e7

Browse files
committed
Use ChromeDriver 2.44 as the most compatible version.
1 parent dcb7f10 commit b67a5e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

seleniumbase/console_scripts/sb_install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ def main():
7171
inner_folder = None
7272

7373
if name == "chromedriver":
74-
latest_version = "2.46"
74+
latest_version = "2.44" # It's not the latest, but most compatible
7575
if "darwin" in sys_plat:
7676
file_name = "chromedriver_mac64.zip"
7777
elif "linux" in sys_plat:
78-
latest_version = "2.40" # Linux machines may need the old driver
78+
latest_version = "2.44" # Linux machines may need the old driver
7979
file_name = "chromedriver_linux64.zip"
8080
elif "win32" in sys_plat or "win64" in sys_plat or "x64" in sys_plat:
8181
file_name = "chromedriver_win32.zip" # Works for win32 / win_x64

0 commit comments

Comments
 (0)