KPI Tiles
1. Failed
A failed test runs and ends with an error or unmet assertion. Use the cause buckets to prioritize fixes and group similar issues.- Assertion Failure: The expected value did not match the actual value.
- Element Not Found: The locator did not resolve to an element.
- Timeout Issues: An action or wait exceeded the set time.
- Network Issues: A request failed or returned an unexpected status.
- Other Failures: Errors that do not fit the above, for example, script errors or setup issues.
2. Flaky
A test is categorized as Flaky when the outcome is inconsistent across attempts or recent runs without a code change. It often passes on retry.- Timing Related: Order, race, or wait sensitivity. Often passes on retry.
- Environment Dependent: Fails only in a specific environment or runner.
- Network Dependent: Intermittent remote call or service instability.
- Assertion Intermittent: Non-deterministic data or state causes occasional mismatches.
- Other Flaky: Unstable for reasons outside the above buckets.
3. Skipped
A skipped test does not run due to a skip directive, configuration, or runtime condition. No assertions executed.- Manually Skipped: Explicitly skipped in code or via tag.
- Configuration Skipped: Disabled by config, project, or reporter settings.
- Conditional Skipped: Skipped due to an evaluated condition at runtime.
Detailed Analysis
This table lists every test in the run, allowing you to move from the summary signal to a specific test.
It includes:
- Status, spec file, duration, retries, failure cluster, and AI category in one place.
- History preview shows the current run and up to 10 past executions.
- #Trace link (when available) to open full Playwright trace viewer with actions, console output, and network calls.
- Token search and filter chips.
- Sort by duration or status to surface slow or failing tests first.
- One-click access to the test case.
Search Tokens
Use tokens to filter and combine conditions:s: status (passed, failed, flaky, skipped)
c: cluster (assertion-failure, timeout, network-error, …)
@ tag (smoke, regression, e2e)
b: browser (chrome, firefox, safari, edge)