playwright_hover
Simulate hover interactions on web elements using a CSS selector with browser automation. Enables precise testing, scraping, and debugging within real browser environments.
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"
}