playwright-core 1.57.0-alpha-2025-11-10 → 1.57.0-alpha-2025-11-11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -87,7 +87,10 @@ const chromiumSwitches = (assistantMode, channel) => [
87
87
  "--unsafely-disable-devtools-self-xss-warnings",
88
88
  // Edge can potentially restart on Windows (msRelaunchNoCompatLayer) which looses its file descriptors (stdout/stderr) and CDP (3/4). Disable until fixed upstream.
89
89
  "--edge-skip-compat-layer-relaunch",
90
- assistantMode ? "" : "--enable-automation"
90
+ assistantMode ? "" : "--enable-automation",
91
+ // This disables Chrome for Testing infobar that is visible in the persistent context.
92
+ // The switch is ignored everywhere else, including Chromium/Chrome/Edge.
93
+ "--disable-infobars"
91
94
  ].filter(Boolean);
92
95
  // Annotate the CommonJS export names for ESM import in node:
93
96
  0 && (module.exports = {
@@ -88,7 +88,7 @@ const EXECUTABLE_PATHS = {
88
88
  "chromium-headless-shell": {
89
89
  "<unknown>": void 0,
90
90
  "linux-x64": ["chrome-headless-shell-linux64", "chrome-headless-shell"],
91
- "linux-arm64": ["chrome-linux", "chrome"],
91
+ "linux-arm64": ["chrome-linux", "headless_shell"],
92
92
  // non-cft build
93
93
  "mac-x64": ["chrome-headless-shell-mac-x64", "chrome-headless-shell"],
94
94
  "mac-arm64": ["chrome-headless-shell-mac-arm64", "chrome-headless-shell"],
@@ -106,7 +106,7 @@ const EXECUTABLE_PATHS = {
106
106
  "chromium-tip-of-tree-headless-shell": {
107
107
  "<unknown>": void 0,
108
108
  "linux-x64": ["chrome-headless-shell-linux64", "chrome-headless-shell"],
109
- "linux-arm64": ["chrome-linux", "chrome"],
109
+ "linux-arm64": ["chrome-linux", "headless_shell"],
110
110
  // non-cft build
111
111
  "mac-x64": ["chrome-headless-shell-mac-x64", "chrome-headless-shell"],
112
112
  "mac-arm64": ["chrome-headless-shell-mac-arm64", "chrome-headless-shell"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playwright-core",
3
- "version": "1.57.0-alpha-2025-11-10",
3
+ "version": "1.57.0-alpha-2025-11-11",
4
4
  "description": "A high-level API to automate web browsers",
5
5
  "repository": {
6
6
  "type": "git",