browser_take_screenshot
Capture screenshots of web pages for documentation, testing, or monitoring purposes. Save screenshots to specified files and choose between visible viewport or full-page captures.
Instructions
Take a screenshot of the current page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | No | File name to save the screenshot to | |
fullPage | No | Take screenshot of full page |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"description": "File name to save the screenshot to",
"type": "string"
},
"fullPage": {
"description": "Take screenshot of full page",
"type": "boolean"
}
},
"type": "object"
}