screenshot_capture
Capture screenshots of web pages or specific elements for testing, monitoring, and documentation purposes using automated browser sessions.
Instructions
Take a screenshot of the current page
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Output format for the screenshot | base64 |
| fullPage | No | Capture full page screenshot | |
| selector | No | CSS selector of element to screenshot |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "base64",
"description": "Output format for the screenshot",
"enum": [
"base64",
"binary"
],
"type": "string"
},
"fullPage": {
"default": false,
"description": "Capture full page screenshot",
"type": "boolean"
},
"selector": {
"description": "CSS selector of element to screenshot",
"type": "string"
}
},
"type": "object"
}