devtools_js_errors
Captures and returns all JavaScript errors thrown in the browser since opening, enabling developers to pinpoint the exact file, line, and stack trace responsible for a bug.
Instructions
Return all JavaScript exceptions captured since browser_open.
Each entry contains: ts — ISO 8601 timestamp type — error type (e.g. 'TypeError', 'ReferenceError') text — error message url — source file URL line — line number in source file column — column number stack — full stack trace
This is the primary tool for finding which JS file and line causes a bug.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | ISO 8601 timestamp filter. Empty = all. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |