browser_take_screenshot
Capture and save a screenshot of the current webpage in a Selenium-controlled browser session, with options for custom filenames and uncompressed PNG output.
Instructions
Take a screenshot of the current page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | No | File name to save the screenshot to | |
raw | No | Whether to return without compression (PNG format) |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"description": "File name to save the screenshot to",
"type": "string"
},
"raw": {
"description": "Whether to return without compression (PNG format)",
"type": "boolean"
}
},
"type": "object"
}