browser_screenshot
Capture screenshots of web pages during browser automation for documentation, testing, or monitoring purposes. Save to file path or receive base64 data.
Instructions
Take a screenshot of the current page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputPath | No | Optional path where to save the screenshot. If not provided, returns base64 data. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"outputPath": {
"description": "Optional path where to save the screenshot. If not provided, returns base64 data.",
"type": "string"
}
},
"type": "object"
}