devtools_js_errors
Retrieve all JavaScript errors captured in the browser since opening the page, including error type, message, source file, line, and column, to pinpoint the exact cause of bugs.
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 |