hover_by_uid
Hover over web elements using their unique identifier to trigger hover states for testing interactions, inspecting dynamic content, or verifying CSS effects in Firefox browser automation.
Instructions
Hover over an element identified by its UID. TIP: Take a fresh snapshot if the UID becomes stale.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uid | Yes | The UID of the element to hover over |
Input Schema (JSON Schema)
{
"properties": {
"uid": {
"description": "The UID of the element to hover over",
"type": "string"
}
},
"required": [
"uid"
],
"type": "object"
}