Skip to content

Bump Microsoft.Playwright from 1.59.0 to 1.60.0#48

Merged
github-actions[bot] merged 1 commit into
mainfrom
dependabot/nuget/nuget-38b7679c19
May 26, 2026
Merged

Bump Microsoft.Playwright from 1.59.0 to 1.60.0#48
github-actions[bot] merged 1 commit into
mainfrom
dependabot/nuget/nuget-38b7679c19

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Updated Microsoft.Playwright from 1.59.0 to 1.60.0.

Release notes

Sourced from Microsoft.Playwright's releases.

1.60.0

💬 Custom assertion messages

Expect() overloads now accept a custom message that is prepended to any failure, giving extra context in test reports:

await Expect(page.Locator("#status"), "Should be logged in").ToBeVisibleAsync();

When the assertion fails, the message is prefixed:

Should be logged in
Locator expected to be visible

🌐 HAR recording on Tracing

Tracing.StartHarAsync() / Tracing.StopHarAsync() expose HAR recording as a first-class tracing API, with the same Content, Mode and UrlFilter options as RecordHar:

await context.Tracing.StartHarAsync("trace.har");
var page = await context.NewPageAsync();
await page.GotoAsync("https://playwright.dev");
await context.Tracing.StopHarAsync();

🪝 Drop API

New Locator.DropAsync() 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").DropAsync(new() {
    Files = new FilePayload() {
        Name = "note.txt",
        MimeType = "text/plain",
        Buffer = Encoding.UTF8.GetBytes("hello"),
    },
});

await page.Locator("#dropzone").DropAsync(new() {
    Data = new Dictionary<string, string> {
        ["text/plain"] = "hello world",
        ["text/uri-list"] = "https://example.com",
    },
});

🎯 Aria snapshots

Commits viewable in compare view.

@dependabot dependabot Bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels May 24, 2026
@Keboo
Copy link
Copy Markdown
Owner

Keboo commented May 26, 2026

@dependabot rebase

---
updated-dependencies:
- dependency-name: Microsoft.Playwright
  dependency-version: 1.60.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump the nuget group with 1 update Bump Microsoft.Playwright from 1.59.0 to 1.60.0 May 26, 2026
@dependabot dependabot Bot force-pushed the dependabot/nuget/nuget-38b7679c19 branch from eb48990 to 448d6bd Compare May 26, 2026 03:04
@github-actions github-actions Bot merged commit d261207 into main May 26, 2026
6 checks passed
@dependabot dependabot Bot deleted the dependabot/nuget/nuget-38b7679c19 branch May 26, 2026 03:08
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 .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant