midscene_screenshot
Capture and save a screenshot of the active browser tab by specifying a name, aiding in automated testing workflows with Playwright via the MCP-Midscene server.
Instructions
Captures a screenshot of the currently active browser tab and saves it with the given name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name for the screenshot |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name for the screenshot",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}