batch_screenshot_urls
Capture and display screenshots of multiple URLs in a customizable grid layout, enabling efficient analysis and comparison of web pages for UI/UX evaluation.
Instructions
Take screenshots of multiple URLs and display them in a grid
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fullPage | No | Whether to capture full page or just viewport. Default: false | |
gridSize | No | Size of grid (2 for 2x2, 4 for 4x4). Default: 2 | |
paths | No | Optional array of paths to label the screenshots with | |
urls | Yes | Array of URLs to capture screenshots of | |
waitTime | No | Time to wait in milliseconds before taking each screenshot. Default: 1000 |
Input Schema (JSON Schema)
{
"properties": {
"fullPage": {
"description": "Whether to capture full page or just viewport. Default: false",
"type": "boolean"
},
"gridSize": {
"description": "Size of grid (2 for 2x2, 4 for 4x4). Default: 2",
"type": "number"
},
"paths": {
"description": "Optional array of paths to label the screenshots with",
"items": {
"type": "string"
},
"type": "array"
},
"urls": {
"description": "Array of URLs to capture screenshots of",
"items": {
"type": "string"
},
"type": "array"
},
"waitTime": {
"description": "Time to wait in milliseconds before taking each screenshot. Default: 1000",
"type": "number"
}
},
"required": [
"urls"
],
"type": "object"
}