browser_screenshot
Capture screenshots of web pages or specific elements using parallel browser instances. Supports PNG and JPEG formats with adjustable quality for precise output.
Instructions
Take a screenshot of the page or element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fullPage | No | Whether to capture the full page | |
instanceId | Yes | Instance ID | |
quality | No | Image quality (1-100, JPEG only) | |
selector | No | Element selector (capture specific element) | |
type | No | Image format | png |
Input Schema (JSON Schema)
{
"properties": {
"fullPage": {
"default": false,
"description": "Whether to capture the full page",
"type": "boolean"
},
"instanceId": {
"description": "Instance ID",
"type": "string"
},
"quality": {
"default": 80,
"description": "Image quality (1-100, JPEG only)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"selector": {
"description": "Element selector (capture specific element)",
"type": "string"
},
"type": {
"default": "png",
"description": "Image format",
"enum": [
"png",
"jpeg"
],
"type": "string"
}
},
"required": [
"instanceId"
],
"type": "object"
}