Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Cody.VisualStudio.Tests/Cody.VisualStudio.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@
<Version>1.0.7</Version>
</PackageReference>
<PackageReference Include="Microsoft.Playwright">
<Version>1.45.0</Version>
<Version>1.57.0</Version>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a major version jump (1.45.0 → 1.57.0) with multiple breaking changes that should be tested:

  1. Version 1.52: Glob URL patterns in RouteAsync() no longer support ? and [] - requires regex instead
  2. Version 1.52: Route.ContinueAsync() no longer allows overriding Cookie header
  3. Version 1.49: Chrome/Edge channels switched to new headless mode (may require snapshot updates)
  4. Version 1.38: TypeAsync() methods deprecated in favor of Locator.FillAsync()

Verify that existing tests still pass and consider auditing test code for use of these deprecated/changed APIs before merging.

</PackageReference>
<PackageReference Include="Microsoft.Playwright.TestAdapter">
<Version>1.45.0</Version>
<Version>1.57.0</Version>
</PackageReference>
<PackageReference Include="VsixTesting.Xunit">
<Version>0.1.78</Version>
Expand Down
Loading