playwright_hover
Simulate hovering over a specific web element using a CSS selector. This tool enables precise interaction with web pages for testing or automation purposes within a Playwright-based browser environment.
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"
}