From ad147432350e5596a9558729bd1f5468205d1694 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 16 Oct 2025 12:55:34 -0700 Subject: [PATCH] chore: roll 1.57.0-alpha-2025-10-16 (#1150) --- README.md | 4 ++-- package-lock.json | 28 ++++++++++++++-------------- package.json | 6 +++--- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index cee248e..7220041 100644 --- a/README.md +++ b/README.md @@ -692,7 +692,7 @@ http.createServer(async (req, res) => { - Description: Take a screenshot of the current page. You can't perform actions based on the screenshot, use browser_snapshot for actions. - Parameters: - `type` (string, optional): Image format for the screenshot. Default is png. - - `filename` (string, optional): File name to save the screenshot to. Defaults to `page-{timestamp}.{png|jpeg}` if not specified. + - `filename` (string, optional): File name to save the screenshot to. Defaults to `page-{timestamp}.{png|jpeg}` if not specified. Prefer relative file names to stay within the output directory. - `element` (string, optional): Human-readable element description used to obtain permission to screenshot the element. If not provided, the screenshot will be taken of viewport. If element is provided, ref must be provided too. - `ref` (string, optional): Exact target element reference from the page snapshot. If not provided, the screenshot will be taken of viewport. If ref is provided, element must be provided too. - `fullPage` (boolean, optional): When true, takes a screenshot of the full scrollable page, instead of the currently visible viewport. Cannot be used with element screenshots. @@ -801,7 +801,7 @@ http.createServer(async (req, res) => { - Title: Save as PDF - Description: Save page as PDF - Parameters: - - `filename` (string, optional): File name to save the pdf to. Defaults to `page-{timestamp}.pdf` if not specified. + - `filename` (string, optional): File name to save the pdf to. Defaults to `page-{timestamp}.pdf` if not specified. Prefer relative file names to stay within the output directory. - Read-only: **true** diff --git a/package-lock.json b/package-lock.json index 43d6250..8e5db05 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,15 +9,15 @@ "version": "0.0.42", "license": "Apache-2.0", "dependencies": { - "playwright": "1.57.0-alpha-2025-10-09", - "playwright-core": "1.57.0-alpha-2025-10-09" + "playwright": "1.57.0-alpha-2025-10-16", + "playwright-core": "1.57.0-alpha-2025-10-16" }, "bin": { "mcp-server-playwright": "cli.js" }, "devDependencies": { "@modelcontextprotocol/sdk": "^1.17.5", - "@playwright/test": "1.57.0-alpha-2025-10-09", + "@playwright/test": "1.57.0-alpha-2025-10-16", "@types/node": "^24.3.0", "zod-to-json-schema": "^3.24.6" }, @@ -50,13 +50,13 @@ } }, "node_modules/@playwright/test": { - "version": "1.57.0-alpha-2025-10-09", - "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.57.0-alpha-2025-10-09.tgz", - "integrity": "sha512-2JBSbeimUS2kQQxvi9x17GqsU5AWeB33gKUAGv08ViYfoIop+b++t2vzUoid2+Bq3xYWd4JpBoUPAz+/tQZ7LQ==", + "version": "1.57.0-alpha-2025-10-16", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.57.0-alpha-2025-10-16.tgz", + "integrity": "sha512-WeQm4QMmW78sKNSPrkMCkhm5jrmDYJushuuDX434EsG8l0+1yW/CxDKaUsy+URZay162SByoFbclaoJ5ElN1yg==", "dev": true, "license": "Apache-2.0", "dependencies": { - "playwright": "1.57.0-alpha-2025-10-09" + "playwright": "1.57.0-alpha-2025-10-16" }, "bin": { "playwright": "cli.js" @@ -825,12 +825,12 @@ } }, "node_modules/playwright": { - "version": "1.57.0-alpha-2025-10-09", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.57.0-alpha-2025-10-09.tgz", - "integrity": "sha512-43vX0bt/YQANmKuWMDJSQMtic5iKBgqD6YMFgM045hELzFE5/mbRKRZI+iPVrFbKsvyClWzd/HVIvluwkbJVqg==", + "version": "1.57.0-alpha-2025-10-16", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.57.0-alpha-2025-10-16.tgz", + "integrity": "sha512-a1527pq+d/EQRwfoUpnTfjZqA04qs5y3A3HedQZiU6Vicc35VcIIpYin99pklFQdyBd1M9oj9oKFsHbilflo6g==", "license": "Apache-2.0", "dependencies": { - "playwright-core": "1.57.0-alpha-2025-10-09" + "playwright-core": "1.57.0-alpha-2025-10-16" }, "bin": { "playwright": "cli.js" @@ -843,9 +843,9 @@ } }, "node_modules/playwright-core": { - "version": "1.57.0-alpha-2025-10-09", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.57.0-alpha-2025-10-09.tgz", - "integrity": "sha512-K6BwJMLn+2wLRu/iqk0l4MJ1Ou1tObap3UMX+sVoXrgAOBG1/L5RTe70NVTB1ROrsgZYxaqFGMyo53bBN/uw5Q==", + "version": "1.57.0-alpha-2025-10-16", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.57.0-alpha-2025-10-16.tgz", + "integrity": "sha512-QfB4sdxqkxN3mrBii/Fqh65qSggrPbcDMJcsqjwsShn1lxbX48P8WuNNSdF05lwDfgS3BsQBkay3SdY3caueAg==", "license": "Apache-2.0", "bin": { "playwright-core": "cli.js" diff --git a/package.json b/package.json index 3d29d00..cb0913d 100644 --- a/package.json +++ b/package.json @@ -35,15 +35,15 @@ } }, "dependencies": { - "playwright": "1.57.0-alpha-2025-10-09", - "playwright-core": "1.57.0-alpha-2025-10-09" + "playwright": "1.57.0-alpha-2025-10-16", + "playwright-core": "1.57.0-alpha-2025-10-16" }, "bin": { "mcp-server-playwright": "cli.js" }, "devDependencies": { "@modelcontextprotocol/sdk": "^1.17.5", - "@playwright/test": "1.57.0-alpha-2025-10-09", + "@playwright/test": "1.57.0-alpha-2025-10-16", "@types/node": "^24.3.0", "zod-to-json-schema": "^3.24.6" }