diff --git a/packages/server/lib/browsers/chrome.coffee b/packages/server/lib/browsers/chrome.coffee index 61a1e82fc9cb..22f227e548b2 100644 --- a/packages/server/lib/browsers/chrome.coffee +++ b/packages/server/lib/browsers/chrome.coffee @@ -42,8 +42,9 @@ defaultArgs = [ "--allow-insecure-localhost" "--reduce-security-for-testing" "--enable-automation" - "--disable-infobars" + "--disable-device-discovery-notifications" + "--disable-infobars" ## https://github.com/cypress-io/cypress/issues/2376 "--autoplay-policy=no-user-gesture-required" @@ -74,6 +75,17 @@ defaultArgs = [ ## https://github.com/cypress-io/cypress/issues/2704 "--use-fake-ui-for-media-stream" "--use-fake-device-for-media-stream" + + ## so Cypress commands don't get throttled + ## https://github.com/cypress-io/cypress/issues/5132 + "--disable-ipc-flooding-protection" + + ## misc. options puppeteer passes + ## https://github.com/cypress-io/cypress/issues/3633 + "--disable-backgrounding-occluded-window" + "--disable-breakpad" + "--password-store=basic" + "--use-mock-keychain" ] pluginsBeforeBrowserLaunch = (browser, args) ->