We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 126b87d commit cc66d36Copy full SHA for cc66d36
webdriver-ts/src/puppeteerAccess.ts
@@ -65,6 +65,8 @@ function browserPath(benchmarkOptions: BenchmarkDriverOptions) {
65
return "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome";
66
} else if (process.platform == "linux") {
67
return "google-chrome";
68
+ } else if(/^win/i.test(process.platform)) {
69
+ return 'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe';
70
} else {
71
throw new Error("Path to Google Chrome executable must be specified");
72
}
0 commit comments