Update playwright-dotnet monorepo to 1.59.0#396
Conversation
There was a problem hiding this comment.
This diff updates Microsoft.Playwright and Microsoft.Playwright.TestAdapter from version 1.45.0 to 1.57.0 in the test project. This is a significant version jump spanning 12 minor releases with multiple breaking changes that could affect existing test code. The update likely aims to access newer features and browser versions, but requires careful validation to ensure compatibility with the existing test suite.
| </PackageReference> | ||
| <PackageReference Include="Microsoft.Playwright"> | ||
| <Version>1.45.0</Version> | ||
| <Version>1.57.0</Version> |
There was a problem hiding this comment.
This is a major version jump (1.45.0 → 1.57.0) with multiple breaking changes that should be tested:
- Version 1.52: Glob URL patterns in
RouteAsync()no longer support?and[]- requires regex instead - Version 1.52:
Route.ContinueAsync()no longer allows overriding Cookie header - Version 1.49: Chrome/Edge channels switched to new headless mode (may require snapshot updates)
- Version 1.38:
TypeAsync()methods deprecated in favor ofLocator.FillAsync()
Verify that existing tests still pass and consider auditing test code for use of these deprecated/changed APIs before merging.
Test Results27 tests ±0 22 ✅ - 4 14m 54s ⏱️ -8s For more details on these failures, see this check. Results for commit fb7c84a. ± Comparison against base commit 4db9c71. ♻️ This comment has been updated with latest results. |
fc47d45 to
d2fde67
Compare
d2fde67 to
fb7c84a
Compare
This PR contains the following updates:
1.45.0→1.59.01.45.0→1.59.0Test plan: CI should pass with updated dependencies. No review required: this is an automated dependency update PR.
Release Notes
microsoft/playwright-dotnet (Microsoft.Playwright)
v1.59.0🎬 Screencast
New Page.Screencast API provides a unified interface for capturing page content with:
Screencast recording — record video with precise start/stop control, as an alternative to the
recordVideoDiroption:Action annotations — enable built-in visual annotations that highlight interacted elements and display action titles during recording:
ShowActionsAsyncacceptsPosition("top-left","top","top-right","bottom-left","bottom","bottom-right"),Duration(ms per annotation), andFontSize(px). Returns a disposable to stop showing actions.Visual overlays — add chapter titles and custom HTML overlays on top of the page for richer narration:
Real-time frame capture — stream JPEG-encoded frames for custom processing like thumbnails, live previews, AI vision, and more:
Agentic video receipts — coding agents can produce video evidence of their work. After completing a task, an agent can record a walkthrough video with rich annotations for human review:
The resulting video serves as a receipt: chapter titles provide context, action annotations highlight each interaction, and the visual walkthrough is faster to review than text logs.
🔍 Snapshots and Locators
Page.Locator("body").AriaSnapshotAsync().DepthandModein Locator.AriaSnapshotAsync().New APIs
Screencast
Storage, Console and Errors
Filterin Page.ConsoleMessagesAsync() and page.pageErrors() controls which messages are returned.Miscellaneous
Livein Tracing.StartAsync() for real-time trace updates.ArtifactsDirin BrowserType.LaunchAsync() to configure the artifacts directory.🔗 Interoperability
New Browser.BindAsync() API makes a launched browser available for
playwright-cli,@playwright/mcp, and other clients to connect to.Bind a browser — start a browser and bind it so others can connect:
Connect from playwright-cli — connect to the running browser from your favorite coding agent.
Connect from @playwright/mcp — or point your MCP server to the running browser.
Connect from a Playwright client — use API to connect to the browser. Multiple clients at a time are supported!
Pass
HostandPortoptions to bind over WebSocket instead of a named pipe:Call Browser.UnbindAsync() to stop accepting new connections.
Run
npx playwright-cli showto open the Dashboard that lists all the bound browsers, their statuses, and allows interacting with them:Breaking Changes⚠️
Browser Versions
This version was also tested against the following stable channels:
v1.58.0Trace Viewer Improvements
Thanks to @cpAdm for contributing these improvements!
Miscellaneous
BrowserType.ConnectOverCDPAsync() now accepts an
IsLocaloption. When set totrue, it tells Playwright that it runs on the same host as the CDP server, enabling file system optimizations.Breaking Changes⚠️
_reactand_vueselectors. See locators guide for alternatives.:lightselector engine suffix. Use standard CSS selectors instead.Devtoolsfrom BrowserType.LaunchAsync() has been removed. UseArgs = new[] { "--auto-open-devtools-for-tabs" }instead.Browser Versions
v1.57.0Chrome for Testing
Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.
We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.
If you still see an unexpected behaviour change, please file an issue.
On Arm64 Linux, Playwright continues to use Chromium.
Breaking Change
After 3 years of being deprecated, we removed
Page.Accessibilityfrom our API. Please use other libraries such as Axe if you need to test page accessibility. See our Node.js guide for integration with Axe.New APIs
Stepsin Locator.ClickAsync() and Locator.DragToAsync() that configures the number ofmousemoveevents emitted while moving the mouse pointer to the target element.Browser Versions
v1.56.0New APIs
Breaking Changes
Miscellaneous
inputplaceholderBrowser Versions
v1.55.0Codegen
ToBeVisibleAsync()assertions: Codegen can now generate automaticToBeVisibleAsync()assertions for common UI interactions. This feature can be enabled in the Codegen settings UI.Breaking Changes
Miscellaneous
Microsoft.Playwright.Xunit.v3Microsoft.Playwright.MSTest.v4Browser Versions
This version was also tested against the following stable channels:
v1.54.0Highlights
New cookie property
PartitionKeyin browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.New option
--user-data-dirin multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.pwsh bin/Debug/netX/playwright.ps1 opendoes not open the test recorder anymore. Usepwsh bin/Debug/netX/playwright.ps1 codegeninstead.Browser Versions
This version was also tested against the following stable channels:
v1.53.0Miscellaneous
New Steps in Trace Viewer:
New method Locator.Describe() to describe a locator. Used for trace viewer.
pwsh bin/Debug/netX/playwright.ps1 install --listwill now list all installed browsers, versions and locations.Browser Versions
This version was also tested against the following stable channels:
v1.52.0Highlights
New method Expect(locator).ToContainClassAsync() to ergonomically assert individual class names on the element.
Aria Snapshots got two new properties:
/childrenfor strict matching and/urlfor links.Miscellaneous
MaxRedirectsin apiRequest.NewContextAsync() to control the maximum number of redirects.Refin locator.AriaSnapshotAsync() to generate reference for each element in the snapshot which can later be used to locate the element.Breaking Changes
Cookieheader anymore. If aCookieheader is provided, it will be ignored, and the cookie will be loaded from the browser's cookie store. To set custom cookies, use browserContext.AddCookiesAsync().Browser Versions
This version was also tested against the following stable channels:
v1.51.0Highlights
New option
IndexedDBfor BrowserContext.StorageStateAsync() allows to save and restore IndexedDB contents. Useful when your application uses IndexedDB API to store authentication tokens, like Firebase Authentication.Here is an example following the authentication guide:
New option
Visiblefor locator.filter() allows matching only visible elements.New option
Contrastfor methods page.emulateMedia() and Browser.NewContextAsync() allows to emulate theprefers-contrastmedia feature.New option
FailOnStatusCodemakes all fetch requests made through the APIRequestContext throw on response codes other than 2xx and 3xx.Browser Versions
This version was also tested against the following stable channels:
v1.50.0Support for Xunit
Miscellaneous
UI updates
canvascontent in traces is error-prone. Display is now disabled by default, and can be enabled via theDisplay canvas contentUI setting.CallandNetworkpanels now display additional time information.Breaking
<input>,<select>, or a number of other editable elements.Browser Versions
This version was also tested against the following stable channels:
v1.49.0Aria snapshots
New assertion Expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.
You can generate this assertion with Test Generator or by calling locator.ariaSnapshot().
Learn more in the aria snapshots guide.
Tracing groups
New method tracing.group() allows you to visually group actions in the trace viewer.
Breaking:
chromeandmsedgechannels switch to new headless modeThis change affects you if you're using one of the following channels in your
playwright.config.ts:chrome,chrome-dev,chrome-beta, orchrome-canarymsedge,msedge-dev,msedge-beta, ormsedge-canaryAfter updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See issue #33566 for more details.
Try new Chromium headless
You can opt into the new headless mode by using
'chromium'channel. As official Chrome documentation puts it:See issue #33566 for the list of possible breakages you could encounter and more details on Chromium headless. Please file an issue if you see any problems after opting in.
dotnet test -- Playwright.BrowserName=chromium Playwright.LaunchOptions.Channel=chromiumMiscellaneous
<canvas>elements inside a snapshot now draw a preview.Browser Versions
This version was also tested against the following stable channels:
v1.48.0WebSocket routing
New methods Page.RouteWebSocketAsync() and BrowserContext.RouteWebSocketAsync() allow to intercept, modify and mock WebSocket connections initiated in the page. Below is a simple example that mocks WebSocket communication by responding to a
"request"with a"response".See WebSocketRoute for more details.
UI updates
Miscellaneous
Browser Versions
This version was also tested against the following stable channels:
v1.47.0Network Tab improvements
The Network tab in the trace viewer has several nice improvements:
Miscellaneous
mcr.microsoft.com/playwright/dotnet:v1.47.0now serves a Playwright image based on Ubuntu 24.04 Noble.To use the 22.04 jammy-based image, please use
mcr.microsoft.com/playwright/dotnet:v1.47.0-jammyinstead.:latest/:focal/:jammytag for Playwright Docker images is no longer being published. Pin to a specific version for better stability and reproducibility.certandkeyas byte arrays instead of file paths.NoWaitAfterin locator.selectOption() was deprecated.macos-13. We recommend upgrading GitHub Actions tomacos-14.Browser Versions
This version was also tested against the following stable channels:
v1.46.0TLS Client Certificates
Playwright now allows to supply client-side certificates, so that server can verify them, as specified by TLS Client Authentication.
You can provide client certificates as a parameter of browser.NewContextAsync() and APIRequest.NewContextAsync(). The following snippet sets up a client certificate for
https://example.com:When using the MSTest or NUnit base-classes, these can be added by using the ContextOptions method.
Trace Viewer Updates
BaseURL.Miscellaneous
MaxRetriesoption in apiRequestContext.FetchAsync() which retries on theECONNRESETnetwork error.Browser Versions
This version was also tested against the following stable channels:
v1.45.1Highlights
microsoft/playwright-java#1617 - [Bug]: Trace Viewer not reporting all actions
microsoft/playwright#31764 - [Bug]: some actions do not appear in the trace file
Browser Versions
This version was also tested against the following stable channels:
Configuration
📅 Schedule: (in timezone America/Los_Angeles)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.