playwright_click
Execute clicks on web page elements using a CSS selector. Enables browser automation for precise interactions within a real browser environment via Playwright.
Instructions
Click an element on the page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for the element to click |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for the element to click",
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}