Skip to content

chore(e2e-deps): Bump @playwright/test from 1.58.2 to 1.60.0 in /tests/e2e#684

Merged
peterdrier merged 1 commit into
mainfrom
dependabot/npm_and_yarn/tests/e2e/playwright/test-1.60.0
May 20, 2026
Merged

chore(e2e-deps): Bump @playwright/test from 1.58.2 to 1.60.0 in /tests/e2e#684
peterdrier merged 1 commit into
mainfrom
dependabot/npm_and_yarn/tests/e2e/playwright/test-1.60.0

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 19, 2026

Bumps @playwright/test from 1.58.2 to 1.60.0.

Release notes

Sourced from @​playwright/test's releases.

v1.60.0

🌐 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

... (truncated)

Commits

@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github May 19, 2026

Labels

The following labels could not be found: dependencies, npm, tests. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Bumps [@playwright/test](https://github.com/microsoft/playwright) from 1.58.2 to 1.60.0.
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.58.2...v1.60.0)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(e2e-deps): bump @playwright/test from 1.58.2 to 1.60.0 in /tests/e2e chore(e2e-deps): Bump @playwright/test from 1.58.2 to 1.60.0 in /tests/e2e May 20, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/tests/e2e/playwright/test-1.60.0 branch from 6f713c4 to d6488dd Compare May 20, 2026 10:18
@peterdrier peterdrier merged commit 7a2958b into main May 20, 2026
5 checks passed
@peterdrier peterdrier deleted the dependabot/npm_and_yarn/tests/e2e/playwright/test-1.60.0 branch May 20, 2026 10:23
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.

1 participant