Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 538cd05

Browse files
committed
Merge branch 'master_chrome_windows' of https://github.com/puckowski/js-framework-benchmark into puckowski-master_chrome_windows
2 parents 84fe457 + 2a04404 commit 538cd05

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

webdriver-ts/src/playwrightAccess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function browserPath(benchmarkOptions: BenchmarkDriverOptions) {
8787
} else if (process.platform == "linux") {
8888
return "/usr/bin/google-chrome";
8989
} else if(/^win/i.test(process.platform)) {
90-
return 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe';
90+
return 'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe';
9191
} else {
9292
throw new Error("Path to Google Chrome executable must be specified");
9393
}

webdriver-ts/src/puppeteerAccess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function browserPath(benchmarkOptions: BenchmarkDriverOptions) {
8686
} else if (process.platform == "linux") {
8787
return "google-chrome";
8888
} else if(/^win/i.test(process.platform)) {
89-
return 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe';
89+
return 'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe';
9090
} else {
9191
throw new Error("Path to Google Chrome executable must be specified");
9292
}

0 commit comments

Comments
 (0)