playwright_click_text
Automate clicking elements on a webpage by matching their text content using the MCP Playwright Server for browser interactions.
Instructions
Click an element on the page by its text content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | Text content of the element to click |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "Text content of the element to click",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}