Inspect Failed Steps
Open a failed test row and use the failure reason, screenshot, error details, and related evidence to decide what to fix.
Last updated
Was this helpful?
Open a failed test row and use the failure reason, screenshot, error details, and related evidence to decide what to fix.
Failed rows are the starting point for triage. A failure may mean the application has a bug, the test needs an update, the target environment is not ready, or a shared dependency such as login or test data failed.
Open Runs.
Select the failed run.
Open the Features tab.
Find the failed scenario rows when the run has many.
Open the failed row to expand its details.
The details view can show the scenario location, the error, the final screenshot, the video, and a Debug with AI button that opens the Playwright trace with an AI assistant.
Use the panel from top to bottom:
Error
The Playwright error text, assertion output, and the failure source.
Location
The spec file and configuration that identify where the failure occurred.
Final screenshot
The browser state at the end of the failed scenario.
Video
The browser session leading up to the failure.
Debug with AI
Opens the full action-by-action Playwright trace with an AI assistant docked beside it that diagnoses the failure automatically.
Screenshot shows the wrong page
Navigation, login, or environment setup may be wrong.
Screenshot shows the expected page but the assertion failed
The test expectation may be too strict or out of date.
Error mentions missing selector or timeout
The UI changed, the app was slow, or the selector needs an update.
Error appears before the test reaches the app
Check session setup, dependencies, and secrets.
Many rows fail at the same prerequisite
Fix the prerequisite before editing individual tests.
If the failure panel does not explain the problem:
See the exact browser sequence
Inspect page actions, DOM snapshots, and request timing
Check browser console errors or network requests
After you make a change, re-run the smallest useful scope first. For re-runs, see Cancel or re-run tests.
Last updated
Was this helpful?
Was this helpful?
