midscene_aiHover
Enables mouse cursor hover over web elements using natural language descriptions, automating interactions in test flows with AI-powered precision.
Instructions
Moves the mouse cursor to hover over an element identified by a natural language selector.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
locate | Yes | Use natural language describe the element to hover over |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"locate": {
"description": "Use natural language describe the element to hover over",
"type": "string"
}
},
"required": [
"locate"
],
"type": "object"
}