Skip to content

chore(deps): update playwright monorepo to v1.60.0#330

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/playwright-monorepo
Open

chore(deps): update playwright monorepo to v1.60.0#330
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/playwright-monorepo

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Dec 21, 2025

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) 1.54.21.60.0 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.60.0

Compare Source

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
  files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});

await page.locator('#dropzone').drop({
  data: {
    'text/plain': 'hello world',
    'text/uri-list': 'https://example.com',
  },
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
  await page.route('**/publish', route => {
    test.abort('Tests must not publish to the shared page. Use the `clone` option.');
    return route.abort();
  });
  // ...
});

New APIs

Browser, Context and Page
Locators and Assertions
Network
  • webSocketRoute.protocols() returns the WebSocket subprotocols requested by the page.
  • New option noDefaults in browserType.connectOverCDP() disables Playwright's default overrides on the default context (download behavior, focus emulation, media emulation), so attaching to a user's daily-driver browser doesn't disturb its state.
Errors and Reporting
Test runner
  • New {testFileBaseName} token in testProject.snapshotPathTemplate — file name without extension.
  • Test runner now errors when a config tries to override a non-option fixture, and rejects workers: 0 or negative values.

🛠️ Other improvements

  • HTML reporter:
    • npx playwright show-report accepts .zip files directly — no need to unzip first.
    • Steps that contain attachments inside nested children show an indicator on the parent step.
    • The repeatEachIndex is shown in the test header when non-zero.
  • Trace Viewer adds a pretty-print toggle for JSON / form request and response bodies in the network details panel.

Breaking Changes ⚠️

  • Removed long-deprecated APIs:
    • Locator.ariaRef() — use the standard locator.ariaSnapshot() pipeline.
    • handle option on BrowserContext.exposeBinding and Page.exposeBinding.
    • logger option on BrowserType.connect and BrowserType.connectOverCDP — use tracing instead.
    • Context options videosPath / videoSize — use recordVideo instead.

Browser Versions

  • Chromium 148.0.7778.96
  • Mozilla Firefox 150.0.2
  • WebKit 26.4

This version was also tested against the following stable channels:

  • Google Chrome 147
  • Microsoft Edge 147

v1.59.1

Compare Source

v1.59.0

Compare Source

v1.58.2

Compare Source

v1.58.1

Compare Source

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

v1.58.0

Compare Source

v1.57.0

Compare Source

v1.56.1

Compare Source

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

v1.56.0

Compare Source

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 tests

Run 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!

Learn more about Playwright Agents

New APIs

UI 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 time

Breaking Changes

Miscellaneous

  • Aria snapshots render and compare input placeholder
  • Added environment variable PLAYWRIGHT_TEST to Playwright worker processes to allow discriminating on testing status

Browser Versions

  • Chromium 141.0.7390.37
  • Mozilla Firefox 142.0.1
  • WebKit 26.0

v1.55.1

Compare Source

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

v1.55.0

Compare Source

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

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from fe4b7c8 to 799aee9 Compare December 22, 2025 06:28
@renovate renovate Bot force-pushed the renovate/playwright-monorepo branch from 799aee9 to 39b0f81 Compare December 31, 2025 15:04
@renovate renovate Bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 093b3ec to a1376f5 Compare January 23, 2026 12:46
@renovate renovate Bot changed the title chore(deps): update dependency @playwright/test to v1.57.0 chore(deps): update dependency @playwright/test to v1.58.0 Jan 23, 2026
@renovate renovate Bot force-pushed the renovate/playwright-monorepo branch from a1376f5 to d1eda2d Compare January 30, 2026 21:41
@renovate renovate Bot changed the title chore(deps): update dependency @playwright/test to v1.58.0 chore(deps): update dependency @playwright/test to v1.58.1 Jan 30, 2026
@renovate renovate Bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 2805cc0 to 7940225 Compare February 6, 2026 17:58
@renovate renovate Bot changed the title chore(deps): update dependency @playwright/test to v1.58.1 chore(deps): update dependency @playwright/test to v1.58.2 Feb 6, 2026
@renovate renovate Bot force-pushed the renovate/playwright-monorepo branch from 7940225 to 3afadd8 Compare March 27, 2026 01:00
@renovate renovate Bot changed the title chore(deps): update dependency @playwright/test to v1.58.2 chore(deps): update playwright monorepo to v1.58.2 Mar 27, 2026
@renovate renovate Bot force-pushed the renovate/playwright-monorepo branch from 3afadd8 to 1282da4 Compare March 30, 2026 21:22
@renovate renovate Bot changed the title chore(deps): update playwright monorepo to v1.58.2 chore(deps): update dependency @playwright/test to v1.58.2 Mar 30, 2026
@renovate renovate Bot changed the title chore(deps): update dependency @playwright/test to v1.58.2 chore(deps): update dependency @playwright/test to v1.59.0 Apr 1, 2026
@renovate renovate Bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 8ca369c to 3a4e5bd Compare April 1, 2026 18:55
@renovate renovate Bot changed the title chore(deps): update dependency @playwright/test to v1.59.0 chore(deps): update dependency @playwright/test to v1.59.1 Apr 1, 2026
@renovate renovate Bot force-pushed the renovate/playwright-monorepo branch from 3a4e5bd to 417d59d Compare April 27, 2026 17:49
@renovate renovate Bot changed the title chore(deps): update dependency @playwright/test to v1.59.1 chore(deps): update playwright monorepo to v1.59.1 Apr 27, 2026
@renovate renovate Bot changed the title chore(deps): update playwright monorepo to v1.59.1 chore(deps): update dependency @playwright/test to v1.59.1 Apr 27, 2026
@renovate renovate Bot force-pushed the renovate/playwright-monorepo branch from 417d59d to 493ce7a Compare April 27, 2026 21:18
@renovate renovate Bot force-pushed the renovate/playwright-monorepo branch from 493ce7a to 8086724 Compare May 11, 2026 21:54
@renovate renovate Bot changed the title chore(deps): update dependency @playwright/test to v1.59.1 chore(deps): update dependency @playwright/test to v1.60.0 May 11, 2026
@renovate renovate Bot force-pushed the renovate/playwright-monorepo branch from 8086724 to d7a2693 Compare May 28, 2026 16:01
@renovate renovate Bot changed the title chore(deps): update dependency @playwright/test to v1.60.0 chore(deps): update playwright monorepo to v1.60.0 Jun 2, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants