Playwright Release Notes
Last updated: Apr 1, 2026
- Apr 1, 2026
- Date parsed from source:Apr 1, 2026
- First seen by Releasebot:Apr 1, 2026
v1.59.1
Playwright fixes Windows browser process spawning regressions affecting codegen, --ui, and show commands.
Bug Fixes
[Windows] Reverted hiding console window when spawning browser processes, which caused regressions including broken codegen, --ui and show commands (#39990)
Original source Report a problem - Apr 1, 2026
- Date parsed from source:Apr 1, 2026
- First seen by Releasebot:Apr 1, 2026
v1.59.0
Playwright adds a powerful new screencast API for video recording, action annotations, overlays, and real-time frame capture, plus browser binding and dashboard support for agent workflows. It also expands CLI debugging, trace analysis, and async disposable cleanup.
π¬ Screencast
New
page.screencastAPI provides a unified interface for capturing page content with:- Screencast recordings
- Action annotations
- Visual overlays
- Real-time frame capture
- Agentic video receipts
Screencast recording β record video with precise start/stop control, as an alternative to the
recordVideooption:await page.screencast.start({ path: 'video.webm' }); // ... perform actions ... await page.screencast.stop();Action annotations β enable built-in visual annotations that highlight interacted elements and display action titles during recording:
await page.screencast.showActions({ position: 'top-right' });screencast.showActions()accepts position ('top-left','top','top-right','bottom-left','bottom','bottom-right'), duration (ms per annotation), and fontSize (px). Returns a disposable to stop showing actions.Action annotations can also be enabled in test fixtures via the video option:
// playwright.config.ts export default defineConfig({ use: { video: { mode: 'on', show: { actions: { position: 'top-left' }, test: { position: 'top-right' }, }, }, }, });Visual overlays β add chapter titles and custom HTML overlays on top of the page for richer narration:
await page.screencast.showChapter('Adding TODOs', { description: 'Type and press enter for each TODO', duration: 1000, }); await page.screencast.showOverlay('<div style="color: red">Recording</div>');Real-time frame capture β stream JPEG-encoded frames for custom processing like thumbnails, live previews, AI vision, and more:
await page.screencast.start({ onFrame: ({ data }) => sendToVisionModel(data), size: { width: 800, height: 600 }, });Agentic video receipts β coding agents can produce video evidence of their work. After completing a task, an agent can record a walkthrough video with rich annotations for human review:
await page.screencast.start({ path: 'receipt.webm' }); await page.screencast.showActions({ position: 'top-right' }); await page.screencast.showChapter('Verifying checkout flow', { description: 'Added coupon code support per ticket #1234', }); // Agent performs the verification steps... await page.locator('#coupon').fill('SAVE20'); await page.locator('#apply-coupon').click(); await expect(page.locator('.discount')).toContainText('20%'); await page.screencast.showChapter('Done', { description: 'Coupon applied, discount reflected in total', }); await page.screencast.stop();The resulting video serves as a receipt: chapter titles provide context, action annotations highlight each interaction, and the visual walkthrough is faster to review than text logs.
π Interoperability
New
browser.bind()API makes a launched browser available for playwright-cli,@playwright/mcp, and other clients to connect to.Bind a browser β start a browser and bind it so others can connect:
const { endpoint } = await browser.bind('my-session', { workspaceDir: '/my/project', });Connect from playwright-cli β connect to the running browser from your favorite coding agent.
playwright-cli attach my-session playwright-cli -s my-session snapshotConnect from
@playwright/mcpβ or point your MCP server to the running browser.@playwright/mcp --endpoint=my-sessionConnect from a Playwright client β use API to connect to the browser. Multiple clients at a time are supported!
const browser = await chromium.connect(endpoint);Pass host and port options to bind over WebSocket instead of a named pipe:
const { endpoint } = await browser.bind('my-session', { host: 'localhost', port: 0, }); // endpoint is a ws:// URLCall
browser.unbind()to stop accepting new connections.π Observability
Run
playwright-cli showto open the Dashboard that lists all the bound browsers, their statuses, and allows interacting with them:See what your agent is doing on the background browsers
Click into the sessions for manual interventions
Open DevTools to inspect pages from the background browsers.
playwright-clibinds all of its browsers automatically, so you can see what your agents are doing.Pass
PLAYWRIGHT_DASHBOARD=1env variable to see all@playwright/testbrowsers in the dashboard.
π CLI debugger for agents
Coding agents can now run
npx playwright test --debug=clito attach and debug tests over playwright-cli β perfect for automatically fixing tests in agentic workflows:$ npx playwright test --debug=cliDebugging Instructions
- Run "playwright-cli attach tw-87b59e" to attach to this test
$ playwright-cli attach tw-87b59e ### Session `tw-87b59e` created, attached to `tw-87b59e`. Run commands with: playwright-cli --session=tw-87b59e <command> ### Paused - Navigate to "/" at output/tests/example.spec.ts:4 $ playwright-cli --session tw-87b59e step-over ### Page - Page URL: https://playwright.dev/ - Page Title: Fast and reliable end-to-end testing for modern web apps | Playwright ### Paused - Expect "toHaveTitle" at output/tests/example.spec.ts:7π CLI trace analysis for agents
Coding agents can run
npx playwright traceto explore Playwright Trace and understand failing or flaky tests from the command line:$ npx playwright trace open test-results/example-has-title-chromium/trace.zip Title: example.spec.ts:3 βΊ has title $ npx playwright trace actions --grep="expect" # Time Action Duration ββββ βββββββββ βββββββββββββββββββββββββββββββββββββββββββββββββββββββ ββββββββ 9. 0:00.859 Expect "toHaveTitle" 5.1s β $ npx playwright trace action 9 Expect "toHaveTitle" Error: expect(page).toHaveTitle(expected) failed Expected pattern: /Wrong Title/ Received string: "Fast and reliable end-to-end testing for modern web apps | Playwright" Timeout: 5000ms Snapshots available: before, after usage: npx playwright trace snapshot 9 --name <before|after> $ npx playwright trace snapshot 9 --name after ### Page - Page Title: Fast and reliable end-to-end testing for modern web apps | Playwright $ npx playwright trace closeβ»οΈ await using
Many APIs now return async disposables, enabling the
await usingsyntax for automatic cleanup:await using page = await context.newPage(); { await using route = await page.route('**/*', route => route.continue()); await using script = await page.addInitScript('console.log("init script here")'); await page.goto('https://playwright.dev'); // do something } // route and init script have been removed at this pointπ Snapshots and Locators
Method
page.ariaSnapshot()to capture the aria snapshot of the page β equivalent topage.locator('body').ariaSnapshot().Options depth and mode in
locator.ariaSnapshot().Method
locator.normalize()converts a locator to follow best practices like test ids and aria roles.Method
page.pickLocator()enters an interactive mode where hovering over elements highlights them and shows the corresponding locator. Click an element to get its Locator back. Usepage.cancelPickLocator()to cancel.New APIs
Screencast
page.screencastprovides video recording, real-time frame streaming, and overlay management.Methods
screencast.start()andscreencast.stop()for recording and frame capture.Methods
screencast.showActions()andscreencast.hideActions()for action annotations.Methods
screencast.showChapter()andscreencast.showOverlay()for visual overlays.Methods
screencast.showOverlays()andscreencast.hideOverlays()for overlay visibility control.Storage, Console and Errors
Method
browserContext.setStorageState()clears existing cookies, local storage, and IndexedDB for all origins and sets a new storage state β no need to create a new context.Methods
page.clearConsoleMessages()andpage.clearPageErrors()to clear stored messages and errors.Option filter in
page.consoleMessages()andpage.pageErrors()controls which messages are returned.Method
consoleMessage.timestamp().Miscellaneous
browserContext.debuggerprovides programmatic control over the Playwright debugger.Method
browserContext.isClosed().Method
request.existingResponse()returns the response without waiting.Method
response.httpVersion()returns the HTTP version used by the response.Events
cdpSession.on('event')andcdpSession.on('close')for CDP sessions.Option
liveintracing.start()for real-time trace updates.Option
artifactsDirinbrowserType.launch()to configure the artifacts directory.π οΈ Other improvements
UI Mode has an option to only show tests affected by source changes.
UI Mode and Trace Viewer have improved action filtering.
HTML Reporter shows the list of runs from the same worker.
HTML Reporter allows filtering test steps for quick search.
New trace mode
'retain-on-failure-and-retries'records a trace for each test run and retains all traces when an attempt fails β great for comparing a passing trace with a failing one from a flaky test.Breaking Changes β οΈ
Removed macOS 14 support for WebKit. We recommend upgrading your macOS version, or keeping an older Playwright version.
Removed
@playwright/experimental-ct-sveltepackage.Browser Versions
Chromium 147.0.7727.15
Mozilla Firefox 148.0.2
WebKit 26.4
This version was also tested against the following stable channels:
- Google Chrome 146
- Microsoft Edge 146
All of your release notes in one feed
Join Releasebot and get updates from Microsoft and hundreds of other software products.
- Feb 6, 2026
- Date parsed from source:Feb 6, 2026
- First seen by Releasebot:Feb 7, 2026
v1.58.2
Highlights
- #39121 fix(trace viewer): make paths via stdin work
- #39129 fix: do not force swiftshader on chromium mac
Browser Versions
- Chromium 145.0.7632.6
- Mozilla Firefox 146.0.1
- WebKit 26.0
- Jan 30, 2026
- Date parsed from source:Jan 30, 2026
- First seen by Releasebot:Jan 30, 2026
v1.58.1
Highlights
- #39036 fix(msedge): fix local network permissions
- #39037 chore: update cft download location
- #38995 chore(webkit): disable frame sessions on fronzen builds
Browser Versions
- Chromium 145.0.7632.6
- Mozilla Firefox 146.0.1
- WebKit 26.0
- Jan 26, 2026
- Date parsed from source:Jan 26, 2026
- First seen by Releasebot:Jan 24, 2026
- Modified by Releasebot:Jan 26, 2026
v1.58.0
Playwright unveils a tokenβefficient SKILLβfocused CLI mode with skills at playwright-cli, expanding commands and agent friendliness. It adds UI tweaks, code editor search, JSON formatting, a local CDP option, and noted breaking changes alongside updated browser versions.
π£ Playwright CLI+SKILLs π£
We are adding a new token-efficient CLI mode of operation to Playwright with the skills located at playwright-cli. This brings the long-awaited official SKILL-focused CLI mode to our story and makes it more coding agent-friendly.
It is the first snapshot with the essential command set (which is already larger than the original MCP!), but we expect it to grow rapidly. Unlike the token use, that one we expect to go down since snapshots are no longer forced into the LLM!Timeline
If you're using merged reports, the HTML report Speedboard tab now shows the Timeline:
UI Mode and Trace Viewer Improvements
- New 'system' theme option follows your OS dark/light mode preference
- Search functionality (Cmd/Ctrl+F) is now available in code editors
- Network details panel has been reorganized for better usability
- JSON responses are now automatically formatted for readability
Thanks to @cpAdm for contributing these improvements!
Miscellaneous
browserType.connectOverCDP() now accepts an isLocal option. When set to true, it tells Playwright that it runs on the same host as the CDP server, enabling file system optimizations.
Breaking Changes β οΈ
- Removed _react and _vue selectors. See locators guide for alternatives.
- Removed :light selector engine suffix. Use standard CSS selectors instead.
- Option devtools from browserType.launch() has been removed. Use args: ['--auto-open-devtools-for-tabs'] instead.
- Removed macOS 13 support for WebKit. We recommend to upgrade your macOS version, or keep using an older Playwright version.
Browser Versions
- Chromium 145.0.7632.6
- Mozilla Firefox 146.0.1
- WebKit 26.0
This version was also tested against the following stable channels:
- Google Chrome 144
- Microsoft Edge 144
- Nov 28, 2025
- Date parsed from source:Nov 28, 2025
- First seen by Releasebot:Dec 11, 2025
v1.57.0
Playwright rolls out a Speedboard to highlight slow tests and switches Chrome for Testing builds with a small UI update. The release adds new APIs and config options, enhances service worker network/console reporting, and deprecates Page#accessibility in favor of Axe. Browser versions updated.
Speedboard
In HTML reporter, there's a new tab we call "Speedboard":
It shows you all your executed tests sorted by slowness,
and can help you understand where your test suite is taking longer than expected.
Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!Chrome for Testing
Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.
We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.
If you still see an unexpected behaviour change, please file an issue.On Arm64 Linux
Playwright continues to use Chromium.
Waiting for webserver output
testConfig.webServer added a wait field. Pass a regular expression, and Playwright will wait until the webserver logs match it.
import { defineConfig } from '@playwright/test'; export default defineConfig({ webServer: { command: 'npm run start', wait: { stdout: '/Listening on port (?<my_server_port>\\d+)/' }, }, });If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:
import { test, expect } from '@playwright/test'; test.use({ baseUrl: `http://localhost:${process.env.MY_SERVER_PORT ?? 3000}` }); test('homepage', async ({ page }) => { await page.goto('/'); });This is not just useful for capturing varying ports of dev servers. You can also use it to wait for readiness of a service that doesn't expose an HTTP readiness check, but instead prints a readiness message to stdout or stderr.
Breaking Change
After 3 years of being deprecated, we removed Page#accessibility from our API. Please use other libraries such as Axe if you need to test page accessibility. See our Node.js guide for integration with Axe.
New APIs
New property testConfig.tag adds a tag to all tests in this run. This is useful when using merge-reports.
worker.on('console') event is emitted when JavaScript within the worker calls one of console API methods, e.g. console.log or console.dir. worker.waitForEvent() can be used to wait for it.
locator.description() returns locator description previously set with locator.describe(), and Locator.toString() now uses the description when available.
New option steps in locator.click() and locator.dragTo() that configures the number of mousemove events emitted while moving the mouse pointer to the target element.
Network requests issued by Service Workers are now reported and can be routed through the BrowserContext, only in Chromium. You can opt out using the PLAYWRIGHT_DISABLE_SERVICE_WORKER_NETWORK environment variable.
Console messages from Service Workers are dispatched through worker.on('console'). You can opt out of this using the PLAYWRIGHT_DISABLE_SERVICE_WORKER_CONSOLE environment variable.Browser Versions
- Chromium 143.0.7499.4
- Mozilla Firefox 144.0.2
- WebKit 26.0
- Oct 17, 2025
- Date parsed from source:Oct 17, 2025
- First seen by Releasebot:Dec 11, 2025
v1.56.1
Highlights
- #37871 chore: allow local-network-access permission in chromium
- #37891 fix(agents): remove workspaceFolder ref from vscode mcp
- #37759 chore: rename agents to test agents
- #37757 chore(mcp): fallback to cwd when resolving test config
Browser Versions
- Chromium 141.0.7390.37
- Mozilla Firefox 142.0.1
- WebKit 26.0
- Oct 7, 2025
- Date parsed from source:Oct 7, 2025
- First seen by Releasebot:Dec 11, 2025
v1.56.0
Playwright introduces Playwright Agents, guiding LLMs through planning, generating, and repairing tests with agent loops in VS Code and other loops. New APIs, UI improvements, and reporter options expand testing workflows across Chromium, Firefox, and WebKit.
Playwright Agents
Introducing Playwright Agents, three custom agent definitions designed to guide LLMs through the core process of building a Playwright test:
π planner explores the app and produces a Markdown test plan
π generator transforms the Markdown plan into the Playwright Test files
π healer executes the test suite and automatically repairs failing testsRun npx playwright init-agents with your client of choice to generate the latest agent definitions:
- Generate agent files for each agentic loop
- Visual Studio Code
npx playwright init-agents --loop=vscode - Claude Code
npx playwright init-agents --loop=claude - opencode
npx playwright init-agents --loop=opencode
Note
VS Code v1.105 (currently on the VS Code Insiders channel) is needed for the agentic experience in VS Code. It will become stable shortly, we are a bit ahead of times with this functionality! - Visual Studio Code
Learn more about Playwright Agents
New APIs
New methods page.consoleMessages() and page.pageErrors() for retrieving the most recent console messages from the page
New method page.requests() for retrieving the most recent network requests from the page
Added --test-list and --test-list-invert to allow manual specification of specific tests from a fileUI Mode and HTML Reporter
Added option to 'html' reporter to disable the "Copy prompt" button
Added option to 'html' reporter and UI Mode to merge files, collapsing test and describe blocks into a single unified list
Added option to UI Mode mirroring the --update-snapshots options
Added option to UI Mode to run only a single worker at a timeBreaking Changes
Event browserContext.on('backgroundpage') has been deprecated and will not be emitted. Method browserContext.backgroundPages() will return an empty list
Miscellaneous
Aria snapshots render and compare input placeholder
Added environment variable PLAYWRIGHT_TEST to Playwright worker processes to allow discriminating on testing statusBrowser Versions
Chromium 141.0.7390.37
Original source Report a problem
Mozilla Firefox 142.0.1
WebKit 26.0 - Oct 6, 2025
- Date parsed from source:Oct 6, 2025
- First seen by Releasebot:Dec 11, 2025
v1.55.1
Highlights
- #37479 - [Bug]: Upgrade Chromium to 140.0.7339.186.
- #37147 - [Regression]: Internal error: step id not found.
- #37146 - [Regression]: HTML reporter displays a broken chip link when there are no projects.
- #37137 - Revert "fix(a11y): track inert elements as hidden".
- #37532 - chore: do not use -k option
Browser Versions
- Chromium 140.0.7339.186
- Mozilla Firefox 141.0
- WebKit 26.0
This version was also tested against the following stable channels:
- Google Chrome 139
- Microsoft Edge 139
- Aug 20, 2025
- Date parsed from source:Aug 20, 2025
- First seen by Releasebot:Dec 11, 2025
v1.55.0
New APIs add testStepInfo.titlePath to reveal the full test and step title path. Codegen now autoβgenerates toBeVisible() assertions for common UI interactions, toggleable in Codegen settings. Note the breaking change: Chromium extension manifest v2 is dropped; Debian 13 Trixie support added.
New APIs
New Property testStepInfo.titlePath Returns the full title path starting from the test file, including test and step titles.
Codegen
Automatic toBeVisible() assertions: Codegen can now generate automatic toBeVisible() assertions for common UI interactions. This feature can be enabled in the Codegen settings UI.
Breaking Changes
β οΈ Dropped support for Chromium extension manifest v2.
Miscellaneous
Added support for Debian 13 "Trixie".
Browser Versions
Chromium 140.0.7339.16
Mozilla Firefox 141.0
WebKit 26.0
This version was also tested against the following stable channels:
Google Chrome 139
Microsoft Edge 139
Original source Report a problem