File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
seleniumbase/console_scripts Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ def main(override=None):
298
298
name = "edgedriver"
299
299
last = (
300
300
"https://msedgewebdriverstorage.blob.core.windows.net"
301
- "/edgewebdriver/LATEST_STABLE "
301
+ "/edgewebdriver/LATEST_BETA "
302
302
)
303
303
get_latest = False
304
304
if num_args == 3 :
@@ -330,12 +330,13 @@ def main(override=None):
330
330
file_name = "edgedriver_win32.zip"
331
331
elif "darwin" in sys_plat :
332
332
file_name = "edgedriver_mac64.zip"
333
+ elif "linux" in sys_plat :
334
+ file_name = "edgedriver_linux64.zip"
333
335
else :
334
336
raise Exception (
335
- "Sorry! Microsoft WebDriver / EdgeDriver is "
336
- "only for Windows or Mac operating systems!"
337
+ "Cannot determine which version of EdgeDriver to download!"
337
338
)
338
- download_url = "https://msedgedriver.azureedge.net/" " %s/%s" % (
339
+ download_url = "https://msedgedriver.azureedge.net/%s/%s" % (
339
340
use_version ,
340
341
file_name ,
341
342
)
You can’t perform that action at this time.
0 commit comments