screenshot
Capture webpage screenshots with options for full-page or viewport shots. Specify a URL and define post-load actions to automate precise captures for documentation or analysis.
Instructions
Take a screenshot of a webpage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
full_page | No | Whether to capture the full page or just the viewport | |
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": {
"full_page": {
"default": false,
"description": "Whether to capture the full page or just the viewport",
"type": "boolean"
},
"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"
}