playwright 1.56.0-alpha-2025-09-20 → 1.56.0-alpha-2025-09-22

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.
@@ -79,6 +79,7 @@ class BaseContextFactory {
79
79
  (0, import_log.testDebug)(`create browser context (${this._logName})`);
80
80
  const browser = await this._obtainBrowser(clientInfo);
81
81
  const browserContext = await this._doCreateContext(browser);
82
+ await addInitScript(browserContext, this.config.browser.initScript);
82
83
  return { browserContext, close: () => this._closeBrowserContext(browserContext, browser) };
83
84
  }
84
85
  async _doCreateContext(browser) {
@@ -177,6 +178,7 @@ class PersistentContextFactory {
177
178
  };
178
179
  try {
179
180
  const browserContext = await browserType.launchPersistentContext(userDataDir, launchOptions);
181
+ await addInitScript(browserContext, this.config.browser.initScript);
180
182
  const close = () => this._closeBrowserContext(browserContext, userDataDir);
181
183
  return { browserContext, close };
182
184
  } catch (error) {
@@ -234,6 +236,10 @@ async function startTraceServer(config, tracesDir) {
234
236
  function createHash(data) {
235
237
  return import_crypto.default.createHash("sha256").update(data).digest("hex").slice(0, 7);
236
238
  }
239
+ async function addInitScript(browserContext, initScript) {
240
+ for (const scriptPath of initScript ?? [])
241
+ await browserContext.addInitScript({ path: import_path.default.resolve(scriptPath) });
242
+ }
237
243
  class SharedContextFactory {
238
244
  static create(config) {
239
245
  if (SharedContextFactory._instance)
@@ -45,6 +45,7 @@ var import_os = __toESM(require("os"));
45
45
  var import_path = __toESM(require("path"));
46
46
  var import_playwright_core = require("playwright-core");
47
47
  var import_utilsBundle = require("playwright-core/lib/utilsBundle");
48
+ var import_util = require("../../util");
48
49
  var import_server = require("../sdk/server");
49
50
  const defaultConfig = {
50
51
  browser: {
@@ -80,8 +81,17 @@ async function resolveCLIConfig(cliOptions) {
80
81
  result = mergeConfig(result, configInFile);
81
82
  result = mergeConfig(result, envOverrides);
82
83
  result = mergeConfig(result, cliOverrides);
84
+ await validateConfig(result);
83
85
  return result;
84
86
  }
87
+ async function validateConfig(config) {
88
+ if (config.browser.initScript) {
89
+ for (const script of config.browser.initScript) {
90
+ if (!await (0, import_util.fileExistsAsync)(script))
91
+ throw new Error(`Init script file does not exist: ${script}`);
92
+ }
93
+ }
94
+ }
85
95
  function configFromCLIOptions(cliOptions) {
86
96
  let browserName;
87
97
  let channel;
@@ -150,7 +160,8 @@ function configFromCLIOptions(cliOptions) {
150
160
  launchOptions,
151
161
  contextOptions,
152
162
  cdpEndpoint: cliOptions.cdpEndpoint,
153
- cdpHeaders: cliOptions.cdpHeader
163
+ cdpHeaders: cliOptions.cdpHeader,
164
+ initScript: cliOptions.initScript
154
165
  },
155
166
  server: {
156
167
  port: cliOptions.port,
@@ -190,6 +201,9 @@ function configFromEnv() {
190
201
  options.headless = envToBoolean(process.env.PLAYWRIGHT_MCP_HEADLESS);
191
202
  options.host = envToString(process.env.PLAYWRIGHT_MCP_HOST);
192
203
  options.ignoreHttpsErrors = envToBoolean(process.env.PLAYWRIGHT_MCP_IGNORE_HTTPS_ERRORS);
204
+ const initScript = envToString(process.env.PLAYWRIGHT_MCP_INIT_SCRIPT);
205
+ if (initScript)
206
+ options.initScript = [initScript];
193
207
  options.isolated = envToBoolean(process.env.PLAYWRIGHT_MCP_ISOLATED);
194
208
  if (process.env.PLAYWRIGHT_MCP_IMAGE_RESPONSES === "omit")
195
209
  options.imageResponses = "omit";
@@ -41,7 +41,7 @@ var import_browserServerBackend = require("./browser/browserServerBackend");
41
41
  var import_extensionContextFactory = require("./extension/extensionContextFactory");
42
42
  var import_host = require("./vscode/host");
43
43
  function decorateCommand(command, version) {
44
- command.option("--allowed-origins <origins>", "semicolon-separated list of origins to allow the browser to request. Default is to allow all.", import_config.semicolonSeparatedList).option("--blocked-origins <origins>", "semicolon-separated list of origins to block the browser from requesting. Blocklist is evaluated before allowlist. If used without the allowlist, requests not matching the blocklist are still allowed.", import_config.semicolonSeparatedList).option("--block-service-workers", "block service workers").option("--browser <browser>", "browser or chrome channel to use, possible values: chrome, firefox, webkit, msedge.").option("--caps <caps>", "comma-separated list of additional capabilities to enable, possible values: vision, pdf.", import_config.commaSeparatedList).option("--cdp-endpoint <endpoint>", "CDP endpoint to connect to.").option("--cdp-header <headers...>", "CDP headers to send with the connect request, multiple can be specified.", import_config.headerParser).option("--config <path>", "path to the configuration file.").option("--device <device>", 'device to emulate, for example: "iPhone 15"').option("--executable-path <path>", "path to the browser executable.").option("--extension", 'Connect to a running browser instance (Edge/Chrome only). Requires the "Playwright MCP Bridge" browser extension to be installed.').option("--grant-permissions <permissions...>", 'List of permissions to grant to the browser context, for example "geolocation", "clipboard-read", "clipboard-write".', import_config.commaSeparatedList).option("--headless", "run browser in headless mode, headed by default").option("--host <host>", "host to bind server to. Default is localhost. Use 0.0.0.0 to bind to all interfaces.").option("--ignore-https-errors", "ignore https errors").option("--isolated", "keep the browser profile in memory, do not save it to disk.").option("--image-responses <mode>", 'whether to send image responses to the client. Can be "allow" or "omit", Defaults to "allow".').option("--no-sandbox", "disable the sandbox for all process types that are normally sandboxed.").option("--output-dir <path>", "path to the directory for output files.").option("--port <port>", "port to listen on for SSE transport.").option("--proxy-bypass <bypass>", 'comma-separated domains to bypass proxy, for example ".com,chromium.org,.domain.com"').option("--proxy-server <proxy>", 'specify proxy server, for example "http://myproxy:3128" or "socks5://myproxy:8080"').option("--save-session", "Whether to save the Playwright MCP session into the output directory.").option("--save-trace", "Whether to save the Playwright Trace of the session into the output directory.").option("--secrets <path>", "path to a file containing secrets in the dotenv format", import_config.dotenvFileLoader).option("--shared-browser-context", "reuse the same browser context between all connected HTTP clients.").option("--storage-state <path>", "path to the storage state file for isolated sessions.").option("--timeout-action <timeout>", "specify action timeout in milliseconds, defaults to 5000ms", import_config.numberParser).option("--timeout-navigation <timeout>", "specify navigation timeout in milliseconds, defaults to 60000ms", import_config.numberParser).option("--user-agent <ua string>", "specify user agent string").option("--user-data-dir <path>", "path to the user data directory. If not specified, a temporary directory will be created.").option("--viewport-size <size>", 'specify browser viewport size in pixels, for example "1280, 720"').addOption(new import_utilsBundle.ProgramOption("--connect-tool", "Allow to switch between different browser connection methods.").hideHelp()).addOption(new import_utilsBundle.ProgramOption("--vscode", "VS Code tools.").hideHelp()).addOption(new import_utilsBundle.ProgramOption("--vision", "Legacy option, use --caps=vision instead").hideHelp()).action(async (options) => {
44
+ command.option("--allowed-origins <origins>", "semicolon-separated list of origins to allow the browser to request. Default is to allow all.", import_config.semicolonSeparatedList).option("--blocked-origins <origins>", "semicolon-separated list of origins to block the browser from requesting. Blocklist is evaluated before allowlist. If used without the allowlist, requests not matching the blocklist are still allowed.", import_config.semicolonSeparatedList).option("--block-service-workers", "block service workers").option("--browser <browser>", "browser or chrome channel to use, possible values: chrome, firefox, webkit, msedge.").option("--caps <caps>", "comma-separated list of additional capabilities to enable, possible values: vision, pdf.", import_config.commaSeparatedList).option("--cdp-endpoint <endpoint>", "CDP endpoint to connect to.").option("--cdp-header <headers...>", "CDP headers to send with the connect request, multiple can be specified.", import_config.headerParser).option("--config <path>", "path to the configuration file.").option("--device <device>", 'device to emulate, for example: "iPhone 15"').option("--executable-path <path>", "path to the browser executable.").option("--extension", 'Connect to a running browser instance (Edge/Chrome only). Requires the "Playwright MCP Bridge" browser extension to be installed.').option("--grant-permissions <permissions...>", 'List of permissions to grant to the browser context, for example "geolocation", "clipboard-read", "clipboard-write".', import_config.commaSeparatedList).option("--headless", "run browser in headless mode, headed by default").option("--host <host>", "host to bind server to. Default is localhost. Use 0.0.0.0 to bind to all interfaces.").option("--ignore-https-errors", "ignore https errors").option("--init-script <path...>", "path to JavaScript file to add as an initialization script. The script will be evaluated in every page before any of the page's scripts. Can be specified multiple times.").option("--isolated", "keep the browser profile in memory, do not save it to disk.").option("--image-responses <mode>", 'whether to send image responses to the client. Can be "allow" or "omit", Defaults to "allow".').option("--no-sandbox", "disable the sandbox for all process types that are normally sandboxed.").option("--output-dir <path>", "path to the directory for output files.").option("--port <port>", "port to listen on for SSE transport.").option("--proxy-bypass <bypass>", 'comma-separated domains to bypass proxy, for example ".com,chromium.org,.domain.com"').option("--proxy-server <proxy>", 'specify proxy server, for example "http://myproxy:3128" or "socks5://myproxy:8080"').option("--save-session", "Whether to save the Playwright MCP session into the output directory.").option("--save-trace", "Whether to save the Playwright Trace of the session into the output directory.").option("--secrets <path>", "path to a file containing secrets in the dotenv format", import_config.dotenvFileLoader).option("--shared-browser-context", "reuse the same browser context between all connected HTTP clients.").option("--storage-state <path>", "path to the storage state file for isolated sessions.").option("--timeout-action <timeout>", "specify action timeout in milliseconds, defaults to 5000ms", import_config.numberParser).option("--timeout-navigation <timeout>", "specify navigation timeout in milliseconds, defaults to 60000ms", import_config.numberParser).option("--user-agent <ua string>", "specify user agent string").option("--user-data-dir <path>", "path to the user data directory. If not specified, a temporary directory will be created.").option("--viewport-size <size>", 'specify browser viewport size in pixels, for example "1280, 720"').addOption(new import_utilsBundle.ProgramOption("--connect-tool", "Allow to switch between different browser connection methods.").hideHelp()).addOption(new import_utilsBundle.ProgramOption("--vscode", "VS Code tools.").hideHelp()).addOption(new import_utilsBundle.ProgramOption("--vision", "Legacy option, use --caps=vision instead").hideHelp()).action(async (options) => {
45
45
  (0, import_watchdog.setupExitWatchdog)();
46
46
  if (options.vision) {
47
47
  console.error("The --vision option is deprecated, use --caps=vision instead");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playwright",
3
- "version": "1.56.0-alpha-2025-09-20",
3
+ "version": "1.56.0-alpha-2025-09-22",
4
4
  "description": "A high-level API to automate web browsers",
5
5
  "repository": {
6
6
  "type": "git",
@@ -64,7 +64,7 @@
64
64
  },
65
65
  "license": "Apache-2.0",
66
66
  "dependencies": {
67
- "playwright-core": "1.56.0-alpha-2025-09-20"
67
+ "playwright-core": "1.56.0-alpha-2025-09-22"
68
68
  },
69
69
  "optionalDependencies": {
70
70
  "fsevents": "2.3.2"