browser_hover
Simulate hovering over a web element using a CSS selector to test UI interactions and identify potential vulnerabilities during web application penetration testing.
Instructions
Hover an element on the page using CSS selector
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"
}