playwright_hover
Simulate mouse hover interactions on web elements using CSS selectors for automated testing or interaction workflows with browser automation.
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"
}