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 ea9afb9 commit edaba88Copy full SHA for edaba88
webdriver-ts/src/webdriverAccess.ts
@@ -250,6 +250,11 @@ export function buildDriver(benchmarkOptions: BenchmarkDriverOptions): WebDriver
250
"--window-size=1200,800"
251
];
252
253
+ if (process.platform == "darwin" && process.arch=="arm64") {
254
+ console.log("INFO: Disabling site isolation as a workaround for Mac M1");
255
+ args.push("--disable-features=IsolateOrigins,site-per-process");
256
+ }
257
+
258
if (benchmarkOptions.headless) {
259
args.push("--headless");
260
args.push("--disable-gpu"); // https://bugs.chromium.org/p/chromium/issues/detail?id=737678
0 commit comments