Skip to content

chore(deps-dev): bump the playwright group with 3 updates#6

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/playwright-c8058e9c1b
Closed

chore(deps-dev): bump the playwright group with 3 updates#6
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/playwright-c8058e9c1b

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the playwright group with 3 updates: @playwright/test, allure-commandline and allure-playwright.

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

Updates allure-commandline from 2.36.0 to 2.41.0

Release notes

Sourced from allure-commandline's releases.

2.41.0

Full Changelog: allure-framework/allure-npm@2.40.0...2.41.0

2.40.0

Full Changelog: allure-framework/allure-npm@2.39.0...2.40.0

2.39.0

Full Changelog: allure-framework/allure-npm@2.38.1...2.39.0

2.38.1

Full Changelog: allure-framework/allure-npm@2.38.0...2.38.1

2.38.0

Full Changelog: allure-framework/allure-npm@2.37.0...2.38.0

2.37.0

Full Changelog: allure-framework/allure-npm@2.36.0...2.37.0

Commits

Updates allure-playwright from 3.4.5 to 3.9.0

Release notes

Sourced from allure-playwright's releases.

v3.9.0

What's Changed

🚀 New Features

🐞 Bug Fixes

⬆️ Dependency Updates

👻 Internal changes

Full Changelog: allure-framework/allure-js@v3.8.0...v3.9.0

v3.8.0

What's Changed

🚀 New Features

🐞 Bug Fixes

Full Changelog: allure-framework/allure-js@v3.7.2...v3.8.0

v3.7.2

What's Changed

🚀 New Features

🐞 Bug Fixes

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the playwright group with 3 updates: [@playwright/test](https://github.com/microsoft/playwright), [allure-commandline](https://github.com/allure-framework/allure-npm) and [allure-playwright](https://github.com/allure-framework/allure-js/tree/HEAD/packages/allure-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)

Updates `allure-commandline` from 2.36.0 to 2.41.0
- [Release notes](https://github.com/allure-framework/allure-npm/releases)
- [Commits](allure-framework/allure-npm@2.36.0...2.41.0)

Updates `allure-playwright` from 3.4.5 to 3.9.0
- [Release notes](https://github.com/allure-framework/allure-js/releases)
- [Commits](https://github.com/allure-framework/allure-js/commits/v3.9.0/packages/allure-playwright)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 23, 2026

Labels

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

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

@dependabot dependabot Bot requested a review from aeshamangukiya as a code owner May 23, 2026 19:06
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 23, 2026

None of your dependencies match this group anymore, you may need to update your configuration file to remove it or change its rules.

@dependabot dependabot Bot closed this May 23, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/playwright-c8058e9c1b branch May 23, 2026 19:16
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