get_console_logs
Retrieve webpage console logs by specifying a URL and optional steps for browser actions, enabling debugging and monitoring of client-side JavaScript errors and messages.
Instructions
Get the console logs of a webpage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
steps | No | Comma-separated actions or sentences describing steps to take after page load (e.g., "click #submit, scroll down" or "Fill the login form and submit") | |
url | Yes | The URL to navigate to |
Input Schema (JSON Schema)
{
"properties": {
"steps": {
"description": "Comma-separated actions or sentences describing steps to take after page load (e.g., \"click #submit, scroll down\" or \"Fill the login form and submit\")",
"type": "string"
},
"url": {
"description": "The URL to navigate to",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}