File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -116,8 +116,11 @@ def get_browser_version_from_os(browser_type=None):
116
116
OSType .LINUX : linux_browser_apps_to_cmd (
117
117
"google-chrome" ,
118
118
"google-chrome-stable" ,
119
+ "chrome" ,
119
120
"google-chrome-beta" ,
120
121
"google-chrome-dev" ,
122
+ "chromium" ,
123
+ "chromium-browser" ,
121
124
),
122
125
OSType .MAC : r"/Applications/Google\ Chrome.app"
123
126
r"/Contents/MacOS/Google\ Chrome --version" ,
Original file line number Diff line number Diff line change @@ -486,10 +486,12 @@ def find_chrome_executable():
486
486
for item in os .environ .get ("PATH" ).split (os .pathsep ):
487
487
for subitem in (
488
488
"google-chrome" ,
489
+ "google-chrome-stable" ,
490
+ "chrome" ,
491
+ "google-chrome-beta" ,
492
+ "google-chrome-dev" ,
489
493
"chromium" ,
490
494
"chromium-browser" ,
491
- "chrome" ,
492
- "google-chrome-stable" ,
493
495
):
494
496
candidates .add (os .sep .join ((item , subitem )))
495
497
if "darwin" in sys_plat :
You can’t perform that action at this time.
0 commit comments