chore: roll pw to latest (#1334)

This commit is contained in:
Pavel Feldman
2026-01-23 16:06:09 -08:00
committed by GitHub
parent 41fba2bd71
commit b58ad48e0a
4 changed files with 21 additions and 21 deletions

View File

@@ -363,6 +363,10 @@ Playwright MCP server supports following arguments. They can be provided in the
--cdp-endpoint <endpoint> CDP endpoint to connect to. --cdp-endpoint <endpoint> CDP endpoint to connect to.
--cdp-header <headers...> CDP headers to send with the connect --cdp-header <headers...> CDP headers to send with the connect
request, multiple can be specified. request, multiple can be specified.
--codegen <lang> specify the language to use for code
generation, possible values:
"typescript", "none". Default is
"typescript".
--config <path> path to the configuration file. --config <path> path to the configuration file.
--console-level <level> level of console messages to return: --console-level <level> level of console messages to return:
"error", "warning", "info", "debug". "error", "warning", "info", "debug".
@@ -440,10 +444,6 @@ Playwright MCP server supports following arguments. They can be provided in the
created. created.
--viewport-size <size> specify browser viewport size in pixels, --viewport-size <size> specify browser viewport size in pixels,
for example "1280x720" for example "1280x720"
--codegen <lang> specify the language to use for code
generation, possible values:
"typescript", "none". Default is
"typescript".
``` ```
<!--- End of options generated section --> <!--- End of options generated section -->

28
package-lock.json generated
View File

@@ -13,7 +13,7 @@
], ],
"devDependencies": { "devDependencies": {
"@modelcontextprotocol/sdk": "^1.25.2", "@modelcontextprotocol/sdk": "^1.25.2",
"@playwright/test": "1.59.0-alpha-1769191051000", "@playwright/test": "1.59.0-alpha-1769208470000",
"@types/node": "^24.3.0" "@types/node": "^24.3.0"
} }
}, },
@@ -411,13 +411,13 @@
"link": true "link": true
}, },
"node_modules/@playwright/test": { "node_modules/@playwright/test": {
"version": "1.59.0-alpha-1769191051000", "version": "1.59.0-alpha-1769208470000",
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.59.0-alpha-1769191051000.tgz", "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.59.0-alpha-1769208470000.tgz",
"integrity": "sha512-oMKBU7JbfcQTSPztMU1I4TYIKlAs5pZ5wjBUBDHvJssdYrUFZjas4LDNoySmQac1jhi5CPjb24rX0W8JFerB2Q==", "integrity": "sha512-vlQlDqkZfOozIeLfUWH5BLCx1SuhOr0U2IHepYrckMhGTYNwJwskOvSbk/Gm4tp020wwXsRe4taG6KrEWb9CjA==",
"dev": true, "dev": true,
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"playwright": "1.59.0-alpha-1769191051000" "playwright": "1.59.0-alpha-1769208470000"
}, },
"bin": { "bin": {
"playwright": "cli.js" "playwright": "cli.js"
@@ -2120,12 +2120,12 @@
} }
}, },
"node_modules/playwright": { "node_modules/playwright": {
"version": "1.59.0-alpha-1769191051000", "version": "1.59.0-alpha-1769208470000",
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.59.0-alpha-1769191051000.tgz", "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.59.0-alpha-1769208470000.tgz",
"integrity": "sha512-WB46+Fx9v6TYPPiWtKUmm+USmlwk/ilMvRh3I844+Wgv94xwBNHaILlWOVnpM77jmDKuflayJZgV+/VbLtngkQ==", "integrity": "sha512-0I+8Xr4yaCtW7jb/v1Rz2sqO1q1eTRbRzLJQeVbcCcGXnMtjqv4srIAt6iTbx6WsgaFLW9uftn6KZb7mMQ8oFw==",
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"playwright-core": "1.59.0-alpha-1769191051000" "playwright-core": "1.59.0-alpha-1769208470000"
}, },
"bin": { "bin": {
"playwright": "cli.js" "playwright": "cli.js"
@@ -2138,9 +2138,9 @@
} }
}, },
"node_modules/playwright-core": { "node_modules/playwright-core": {
"version": "1.59.0-alpha-1769191051000", "version": "1.59.0-alpha-1769208470000",
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.59.0-alpha-1769191051000.tgz", "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.59.0-alpha-1769208470000.tgz",
"integrity": "sha512-T9gWzIM0NLlj0kmB0G8KXZZOszavVEJHGXlrpE401pU1YGwEXCB7vkB8NFJ4+xJJiuhvnnPn34IV9SL00bLFdA==", "integrity": "sha512-uxLgyuMtaVaLjbXB6NjLturg0pe8VaOJlFx5zYizD7ch24kvOD7CkuYk79PItehG31WIfXEvzrn3A3uQOdZKIw==",
"license": "Apache-2.0", "license": "Apache-2.0",
"bin": { "bin": {
"playwright-core": "cli.js" "playwright-core": "cli.js"
@@ -3360,8 +3360,8 @@
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"minimist": "^1.2.5", "minimist": "^1.2.5",
"playwright": "1.59.0-alpha-1769191051000", "playwright": "1.59.0-alpha-1769208470000",
"playwright-core": "1.59.0-alpha-1769191051000" "playwright-core": "1.59.0-alpha-1769208470000"
}, },
"bin": { "bin": {
"mcp": "cli.js", "mcp": "cli.js",

View File

@@ -24,7 +24,7 @@
], ],
"devDependencies": { "devDependencies": {
"@modelcontextprotocol/sdk": "^1.25.2", "@modelcontextprotocol/sdk": "^1.25.2",
"@playwright/test": "1.59.0-alpha-1769191051000", "@playwright/test": "1.59.0-alpha-1769208470000",
"@types/node": "^24.3.0" "@types/node": "^24.3.0"
} }
} }

View File

@@ -35,8 +35,8 @@
}, },
"dependencies": { "dependencies": {
"minimist": "^1.2.5", "minimist": "^1.2.5",
"playwright": "1.59.0-alpha-1769191051000", "playwright": "1.59.0-alpha-1769208470000",
"playwright-core": "1.59.0-alpha-1769191051000" "playwright-core": "1.59.0-alpha-1769208470000"
}, },
"bin": { "bin": {
"mcp": "cli.js", "mcp": "cli.js",