You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Move dashboard session-tabs sidebar to the shared ListView component.
Switch ListView from list/listitem to listbox/option roles so aria-selected is semantically valid and queryable via getByRole(..., { selected: true }).
Update test consumers (trace viewer fixtures, ui-mode network/output, html reporter, dashboard).
4 flaky⚠️ [chromium-library] › library/video.spec.ts:719 › screencast › should work with video+trace `@chromium-ubuntu-22.04-arm-node20` ⚠️ [firefox-library] › library/inspector/cli-codegen-1.spec.ts:1080 › cli codegen › should not throw csp directive violation errors `@firefox-ubuntu-22.04-node20` ⚠️ [playwright-test] › ui-mode-test-output.spec.ts:118 › should collapse repeated console messages for test `@ubuntu-latest-node22` ⚠️ [playwright-test] › ui-mode-test-ct.spec.ts:117 › should run component tests after editing test and component `@windows-latest-node20`
Upstream switched ListView's ARIA roles from list/listitem to listbox/option (microsoft/playwright#40393), so the trace viewer's stack-trace sidebar no longer matches the old locator. Also align the async fixture's aria-label casing with the actual 'Stack trace' label.
- Suppress APICompat baseline errors for removed types (BrowserContextExposeBindingOptions, PageExposeBindingOptions) and changed signature (ILocator.HighlightAsync()).
- Update trace-viewer ListView role assertions: AriaRole.List/Listitem changed to Listbox/Option upstream (microsoft/playwright#40393).
- launchServer test fixture: pass host: '127.0.0.1' explicitly; v1.60 defaults to 'localhost' which can bind IPv6-only on dual-stack Linux runners (microsoft/playwright#40500).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
list/listitemtolistbox/optionroles soaria-selectedis semantically valid and queryable viagetByRole(..., { selected: true }).