midscene_aiTap
Automate web element interactions by locating and clicking specific elements on a page using natural language descriptions with this AI-powered tool.
Instructions
Locates and clicks an element on the current page based on a natural language description (selector).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
locate | Yes | Use natural language describe the element to click |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"locate": {
"description": "Use natural language describe the element to click",
"type": "string"
}
},
"required": [
"locate"
],
"type": "object"
}