browser_screenshot
Capture webpage or element screenshots and save them in desired formats or directories using Chrome automation with anti-bot detection bypass.
Instructions
Take a screenshot of the current page or a specific element
Args:
name: The name of the screenshot - required, default is "screenshot"
storeBase64: Whether to store the screenshot as a base64 string - optional, default is True
downloadsDir: The directory to save the screenshot to - optional, default is the user's Downloads directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
downloadsDir | No | ||
name | Yes | ||
storeBase64 | No |
Input Schema (JSON Schema)
{
"properties": {
"downloadsDir": {
"default": null,
"title": "Downloadsdir",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"storeBase64": {
"default": true,
"title": "Storebase64",
"type": "boolean"
}
},
"required": [
"name"
],
"title": "browser_screenshotArguments",
"type": "object"
}