From 8274f5ddb25a503cb29b532ea5bd5316b7ef9641 Mon Sep 17 00:00:00 2001 From: Jennifer Shehane Date: Mon, 13 Nov 2023 11:36:23 -0500 Subject: [PATCH] fix: Add Chromium flag to disable-component-extensions-with-background-pages (#28294) --- cli/CHANGELOG.md | 8 ++++++++ packages/server/lib/browsers/chrome.ts | 1 + 2 files changed, 9 insertions(+) diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 8a169c088b..cd4f929347 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -1,4 +1,12 @@ +## 13.5.1 + +_Released 11/21/2023 (PENDING)_ + +**Bugfixes:** + +- We now pass a flag to Chromium browsers to disable default component extensions. This is a common flag passed during browser automation. Fixed in [#28294](https://github.com/cypress-io/cypress/pull/28294). + ## 13.5.0 _Released 11/8/2023_ diff --git a/packages/server/lib/browsers/chrome.ts b/packages/server/lib/browsers/chrome.ts index 62026997c3..883ec13c3c 100644 --- a/packages/server/lib/browsers/chrome.ts +++ b/packages/server/lib/browsers/chrome.ts @@ -73,6 +73,7 @@ const DEFAULT_ARGS = [ '--reduce-security-for-testing', '--enable-automation', '--disable-print-preview', + '--disable-component-extensions-with-background-pages', '--disable-device-discovery-notifications',