browser_take_screenshot
Capture screenshots of web pages or specific elements using Playwright MCP Server. Automate visual documentation, debugging, or content extraction tasks with ease.
Instructions
Take a screenshot of the current page or a specific element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fullPage | No | ||
selector | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fullPage": {
"default": false,
"type": "boolean"
},
"selector": {
"type": "string"
}
},
"type": "object"
}