| name | browser-testing-with-devtools |
| description | Use when verifying browser-based behaviour with Chrome DevTools, including DOM state, console output, network activity and performance evidence. |
| aliases | ["browser-debugging","chrome-devtools-testing"] |
Browser Testing With DevTools
When to use
Use this skill when a change affects a browser-rendered interface and you need runtime evidence from the browser rather than static code inspection alone.
Objective
Verify user-facing behaviour with DevTools evidence so frontend or browser issues are reproduced, localized and confirmed with the actual runtime state.
Procedure
- Reproduce the issue or feature in the browser.
- Inspect the DOM, console and network activity.
- Check state changes, errors and timing at the point of failure.
- Use performance or network traces when latency or rendering is relevant.
- Confirm the fix with the same browser path.
Rules
- Do not rely on screenshots alone when runtime evidence is available.
- Do not treat a successful page load as proof of correct behaviour.
- Do not skip console or network checks when a browser bug is involved.
- Do not use performance traces without first reproducing the user-visible problem.
References
Verification