puppeteer_hover
Simulate mouse hover action on a webpage element using a CSS selector. Enables precise interactions in browser automation tasks with Puppeteer MCP Server.
Instructions
Hover an element on the page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for element to hover |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for element to hover",
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}