Developer Tools
DOM inspector, network panel, and console for debugging tests.
The editor ships with three developer panels that mirror the browser's own devtools but are aware of the current test context.
Inspector
Hover any element in the preview to see its role, name, test id, and the natural-language description Assrt would assign it. Click an element to copy a locator line you can drop straight into a step.
Network
Every request fired during the current run is listed with its method, URL, status, and response time. Filter by URL pattern to confirm the app made the calls you expected.
Console
Browser console messages appear here with a source link back to the step that was running when they fired. Use this to surface JavaScript errors that a passing assertion might otherwise hide.