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 414a9cb commit f114c0fCopy full SHA for f114c0f
seleniumbase/console_scripts/sb_install.py
@@ -232,7 +232,7 @@ def main(override=None, intel_for_uc=None):
232
if (
233
"arm" in platform.processor().lower()
234
and not intel_for_uc
235
- and int(use_version) > 105
+ and int(use_version.split(".")[0]) > 105
236
):
237
file_name = "chromedriver_mac_arm64.zip"
238
else:
@@ -402,7 +402,7 @@ def main(override=None, intel_for_uc=None):
402
elif "darwin" in sys_plat:
403
404
405
- and int(use_version) > 104
+ and int(use_version.split(".")[0]) > 104
406
407
file_name = "edgedriver_mac64_m1.zip"
408
0 commit comments