File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
seleniumbase/console_scripts Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,11 @@ def main(override=None, intel_for_uc=None):
229
229
else :
230
230
invalid_run_command ()
231
231
if "darwin" in sys_plat :
232
- if "arm" in platform .processor ().lower () and not intel_for_uc :
232
+ if (
233
+ "arm" in platform .processor ().lower ()
234
+ and not intel_for_uc
235
+ and int (use_version ) > 105
236
+ ):
233
237
file_name = "chromedriver_mac_arm64.zip"
234
238
else :
235
239
file_name = "chromedriver_mac64.zip"
@@ -396,7 +400,10 @@ def main(override=None, intel_for_uc=None):
396
400
file_name = "edgedriver_win32.zip"
397
401
suffix = "WINDOWS"
398
402
elif "darwin" in sys_plat :
399
- if "arm" in platform .processor ().lower ():
403
+ if (
404
+ "arm" in platform .processor ().lower ()
405
+ and int (use_version ) > 104
406
+ ):
400
407
file_name = "edgedriver_mac64_m1.zip"
401
408
else :
402
409
file_name = "edgedriver_mac64.zip"
You can’t perform that action at this time.
0 commit comments