Skip to content

Bump @playwright/test from 1.58.2 to 1.60.0 in the tests-playwright group across 1 directory#515

Open
dependabot[bot] wants to merge 8 commits into
trunkfrom
dependabot/npm_and_yarn/tests-playwright-0d09606200
Open

Bump @playwright/test from 1.58.2 to 1.60.0 in the tests-playwright group across 1 directory#515
dependabot[bot] wants to merge 8 commits into
trunkfrom
dependabot/npm_and_yarn/tests-playwright-0d09606200

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Apr 1, 2026

Bumps the tests-playwright group with 1 update in the / directory: @playwright/test.

Updates @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 dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 1, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/tests-playwright-0d09606200 branch from 8202f6f to 93e3a8d Compare April 17, 2026 04:31
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/tests-playwright-0d09606200 branch from 93e3a8d to c6b8c2d Compare April 20, 2026 04:43
@dependabot dependabot Bot changed the title Bump @playwright/test from 1.58.2 to 1.59.0 in the tests-playwright group Bump @playwright/test from 1.58.2 to 1.59.1 in the tests-playwright group across 1 directory Apr 27, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/tests-playwright-0d09606200 branch from c6b8c2d to 6ef9ef9 Compare April 27, 2026 14:40
@dependabot dependabot Bot changed the title Bump @playwright/test from 1.58.2 to 1.59.1 in the tests-playwright group across 1 directory Bump @playwright/test from 1.58.2 to 1.60.0 in the tests-playwright group across 1 directory May 18, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/tests-playwright-0d09606200 branch 2 times, most recently from 5f813a9 to c9ad3d1 Compare May 19, 2026 02:56
@desrosj desrosj force-pushed the trunk branch 2 times, most recently from e29f070 to 7eb09cf Compare May 21, 2026 03:52
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/tests-playwright-0d09606200 branch 2 times, most recently from e3f357a to 7659bdd Compare May 21, 2026 04:22
@desrosj desrosj force-pushed the trunk branch 2 times, most recently from 00e0635 to cc15ae0 Compare May 21, 2026 23:51
desrosj and others added 3 commits May 22, 2026 00:11
Bumps the tests-playwright group with 1 update in the / directory: [@playwright/test](https://github.com/microsoft/playwright).


Updates `@playwright/test` 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.59.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: tests-playwright
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/tests-playwright-0d09606200 branch from 7659bdd to c5d6d7a Compare May 22, 2026 05:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant