hover-element
Simulate hover actions on webpage elements by specifying their selectors using the AdsPower LocalAPI MCP Server for enhanced browser automation.
Instructions
Hover the element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | The selector of the element to hover, find from the page source code |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"selector": {
"description": "The selector of the element to hover, find from the page source code",
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}