From 93bea59acf8ac31e2a49690a6717f8b92e9e69d4 Mon Sep 17 00:00:00 2001 From: Yangwook Ian Jeong Date: Mon, 30 Sep 2024 13:56:23 +0900 Subject: [PATCH] Update utils.py --- edgedriver_autoinstaller/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edgedriver_autoinstaller/utils.py b/edgedriver_autoinstaller/utils.py index 9efe3ba..a7664ee 100644 --- a/edgedriver_autoinstaller/utils.py +++ b/edgedriver_autoinstaller/utils.py @@ -102,7 +102,7 @@ def get_edge_version(): return # Edge for linux still doesn't exists elif platform == 'mac': # TODO: FIX THIS - process = subprocess.Popen(['/Applications/Google edge.app/Contents/MacOS/Google edge', '--version'], stdout=subprocess.PIPE) + process = subprocess.Popen(['/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft edge', '--version'], stdout=subprocess.PIPE) version = process.communicate()[0].decode('UTF-8').replace('Google edge', '').strip() elif platform == 'win': process = subprocess.Popen(