Trace is not available for this test case
If you see the message “Trace is not available for this test case” in the Stably reporter view, it means that Playwright traces were not captured for your test run.Problem
By default, when you follow Playwright’s official installation instructions,the trace configuration to"on-first-retry". This means traces are only captured when a test fails and is retried, not on the first run or for passing tests.
Solution
Solution #1 (Preferred)
Ensure you are usingnpx stably test instead of npx playwright test. The stably command will ensure the correct tracing behavior is set.
Solution #2
Update yourplaywright.config.ts file to change the trace setting to capture traces for all test runs: