Skip to content

Bump the playwright group across 1 directory with 3 updates#1715

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/playwright-8b79c4479d
Open

Bump the playwright group across 1 directory with 3 updates#1715
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/playwright-8b79c4479d

Conversation

@dependabot
Copy link
Copy Markdown

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

Bumps the playwright group with 3 updates in the / directory: @playwright/browser-chromium, @playwright/browser-firefox and playwright.

Updates @playwright/browser-chromium from 1.57.0 to 1.60.0

Release notes

Sourced from @​playwright/browser-chromium'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

Updates @playwright/browser-firefox from 1.57.0 to 1.60.0

Release notes

Sourced from @​playwright/browser-firefox'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

Updates playwright from 1.57.0 to 1.60.0

Release notes

Sourced from playwright'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

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
playwright [>= 1.58.a, < 1.59]

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 7, 2026
@dependabot dependabot Bot changed the title Bump the playwright group with 3 updates Bump the playwright group across 1 directory with 3 updates Apr 7, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright-8b79c4479d branch 4 times, most recently from a6f9db4 to c31a35e Compare April 12, 2026 04:25
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright-8b79c4479d branch from c31a35e to bf25241 Compare May 1, 2026 23:43
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright-8b79c4479d branch 2 times, most recently from 60a92a3 to c672b4c Compare May 15, 2026 20:32
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright-8b79c4479d branch 3 times, most recently from cdcecfe to f76be6e Compare May 26, 2026 02:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright-8b79c4479d branch from f76be6e to 9f8a6c8 Compare May 27, 2026 00:53
@github-actions

This comment has been minimized.

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright-8b79c4479d branch from 9f8a6c8 to 5c67070 Compare May 27, 2026 22:05
@github-actions

This comment has been minimized.

1 similar comment
@github-actions

This comment has been minimized.

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright-8b79c4479d branch from 5c67070 to bb76dc9 Compare May 28, 2026 22:00
@github-actions

This comment has been minimized.

Bumps the playwright group with 3 updates in the / directory: [@playwright/browser-chromium](https://github.com/microsoft/playwright), [@playwright/browser-firefox](https://github.com/microsoft/playwright) and [playwright](https://github.com/microsoft/playwright).


Updates `@playwright/browser-chromium` from 1.57.0 to 1.60.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.57.0...v1.60.0)

Updates `@playwright/browser-firefox` from 1.57.0 to 1.60.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.57.0...v1.60.0)

Updates `playwright` from 1.57.0 to 1.60.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.57.0...v1.60.0)

---
updated-dependencies:
- dependency-name: "@playwright/browser-chromium"
  dependency-version: 1.59.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: playwright
- dependency-name: "@playwright/browser-firefox"
  dependency-version: 1.59.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: playwright
- dependency-name: playwright
  dependency-version: 1.59.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: playwright
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright-8b79c4479d branch from bb76dc9 to 545521d Compare May 29, 2026 22:51
@github-actions
Copy link
Copy Markdown

No difference in output size

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.

0 participants