Skip to content

deps: bump playwright from 1.59.1 to 1.60.0 - #104

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/playwright-1.60.0
Open

deps: bump playwright from 1.59.1 to 1.60.0#104
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/playwright-1.60.0

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubMay 14, 2026

Copy link
Copy Markdown
Contributor

Bumps playwright from 1.59.1 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:

awaitusinghar=awaitcontext.tracing.startHar('trace.har');constpage=awaitcontext.newPage();awaitpage.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:

awaitpage.locator('#dropzone').drop({files: {name: 'note.txt',mimeType: 'text/plain',buffer: Buffer.from('hello')},});awaitpage.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 })=>{awaitpage.route('**/publish',route=>{test.abort('Tests must not publish to the shared page. Use the `clone` option.');returnroute.abort();});// ...});

New APIs

Browser, Context and Page

... (truncated)

Commits

@dependabot@github

dependabotBot commented on behalf of githubMay 14, 2026

Copy link
Copy Markdown
ContributorAuthor

Labels

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

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

@socket-security

socket-securityBot commented May 14, 2026

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

DiffPackageSupply Chain
Security
VulnerabilityQualityMaintenanceLicense
Updatedplaywright@​1.59.1 ⏵ 1.60.0100+11001009980-19

View full report

@dependabot
dependabotBotforce-pushed the dependabot/npm_and_yarn/playwright-1.60.0 branch 3 times, most recently from bded9f4 to edd3dccCompareMay 20, 2026 15:17
@dependabot
dependabotBotforce-pushed the dependabot/npm_and_yarn/playwright-1.60.0 branch from edd3dcc to 1179ae9CompareMay 24, 2026 10:44
Bumps [playwright](https://github.com/microsoft/playwright) from 1.59.1 to 1.60.0.
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.59.1...v1.60.0)
---
updated-dependencies:
- dependency-name: playwright
dependency-version: 1.60.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabotBotforce-pushed the dependabot/npm_and_yarn/playwright-1.60.0 branch from 1179ae9 to 7c41453CompareMay 26, 2026 16:55
Sign up for freeto 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