diff --git a/README.md b/README.md index ce1c72d..f594e7d 100644 --- a/README.md +++ b/README.md @@ -363,6 +363,10 @@ Playwright MCP server supports following arguments. They can be provided in the --cdp-endpoint CDP endpoint to connect to. --cdp-header CDP headers to send with the connect request, multiple can be specified. + --codegen specify the language to use for code + generation, possible values: + "typescript", "none". Default is + "typescript". --config path to the configuration file. --console-level level of console messages to return: "error", "warning", "info", "debug". @@ -440,10 +444,6 @@ Playwright MCP server supports following arguments. They can be provided in the created. --viewport-size specify browser viewport size in pixels, for example "1280x720" - --codegen specify the language to use for code - generation, possible values: - "typescript", "none". Default is - "typescript". ``` diff --git a/package-lock.json b/package-lock.json index ff596d6..3c3a034 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,7 @@ ], "devDependencies": { "@modelcontextprotocol/sdk": "^1.25.2", - "@playwright/test": "1.59.0-alpha-1769191051000", + "@playwright/test": "1.59.0-alpha-1769208470000", "@types/node": "^24.3.0" } }, @@ -411,13 +411,13 @@ "link": true }, "node_modules/@playwright/test": { - "version": "1.59.0-alpha-1769191051000", - "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.59.0-alpha-1769191051000.tgz", - "integrity": "sha512-oMKBU7JbfcQTSPztMU1I4TYIKlAs5pZ5wjBUBDHvJssdYrUFZjas4LDNoySmQac1jhi5CPjb24rX0W8JFerB2Q==", + "version": "1.59.0-alpha-1769208470000", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.59.0-alpha-1769208470000.tgz", + "integrity": "sha512-vlQlDqkZfOozIeLfUWH5BLCx1SuhOr0U2IHepYrckMhGTYNwJwskOvSbk/Gm4tp020wwXsRe4taG6KrEWb9CjA==", "dev": true, "license": "Apache-2.0", "dependencies": { - "playwright": "1.59.0-alpha-1769191051000" + "playwright": "1.59.0-alpha-1769208470000" }, "bin": { "playwright": "cli.js" @@ -2120,12 +2120,12 @@ } }, "node_modules/playwright": { - "version": "1.59.0-alpha-1769191051000", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.59.0-alpha-1769191051000.tgz", - "integrity": "sha512-WB46+Fx9v6TYPPiWtKUmm+USmlwk/ilMvRh3I844+Wgv94xwBNHaILlWOVnpM77jmDKuflayJZgV+/VbLtngkQ==", + "version": "1.59.0-alpha-1769208470000", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.59.0-alpha-1769208470000.tgz", + "integrity": "sha512-0I+8Xr4yaCtW7jb/v1Rz2sqO1q1eTRbRzLJQeVbcCcGXnMtjqv4srIAt6iTbx6WsgaFLW9uftn6KZb7mMQ8oFw==", "license": "Apache-2.0", "dependencies": { - "playwright-core": "1.59.0-alpha-1769191051000" + "playwright-core": "1.59.0-alpha-1769208470000" }, "bin": { "playwright": "cli.js" @@ -2138,9 +2138,9 @@ } }, "node_modules/playwright-core": { - "version": "1.59.0-alpha-1769191051000", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.59.0-alpha-1769191051000.tgz", - "integrity": "sha512-T9gWzIM0NLlj0kmB0G8KXZZOszavVEJHGXlrpE401pU1YGwEXCB7vkB8NFJ4+xJJiuhvnnPn34IV9SL00bLFdA==", + "version": "1.59.0-alpha-1769208470000", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.59.0-alpha-1769208470000.tgz", + "integrity": "sha512-uxLgyuMtaVaLjbXB6NjLturg0pe8VaOJlFx5zYizD7ch24kvOD7CkuYk79PItehG31WIfXEvzrn3A3uQOdZKIw==", "license": "Apache-2.0", "bin": { "playwright-core": "cli.js" @@ -3360,8 +3360,8 @@ "license": "Apache-2.0", "dependencies": { "minimist": "^1.2.5", - "playwright": "1.59.0-alpha-1769191051000", - "playwright-core": "1.59.0-alpha-1769191051000" + "playwright": "1.59.0-alpha-1769208470000", + "playwright-core": "1.59.0-alpha-1769208470000" }, "bin": { "mcp": "cli.js", diff --git a/package.json b/package.json index 28d7c7f..973b82b 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ ], "devDependencies": { "@modelcontextprotocol/sdk": "^1.25.2", - "@playwright/test": "1.59.0-alpha-1769191051000", + "@playwright/test": "1.59.0-alpha-1769208470000", "@types/node": "^24.3.0" } } diff --git a/packages/playwright-mcp/package.json b/packages/playwright-mcp/package.json index 070964c..1f4edf0 100644 --- a/packages/playwright-mcp/package.json +++ b/packages/playwright-mcp/package.json @@ -35,8 +35,8 @@ }, "dependencies": { "minimist": "^1.2.5", - "playwright": "1.59.0-alpha-1769191051000", - "playwright-core": "1.59.0-alpha-1769191051000" + "playwright": "1.59.0-alpha-1769208470000", + "playwright-core": "1.59.0-alpha-1769208470000" }, "bin": { "mcp": "cli.js",