Documentation Index
Fetch the complete documentation index at: https://mintlify.com/steerlabs/opensteer/llms.txt
Use this file to discover all available pages before exploring further.
Method Signature
Parameters
Configuration for the hover action
Hover over elements to trigger hover states, tooltips, and dropdown menus
Documentation Index
Fetch the complete documentation index at: https://mintlify.com/steerlabs/opensteer/llms.txt
Use this file to discover all available pages before exploring further.
await opensteer.hover(options: HoverOptions): Promise<ActionResult>
Show HoverOptions properties
element or selector are not provided.false to disable waiting, or provide options to customize wait behavior.Show ActionResult properties
// Hover to reveal dropdown menu
await opensteer.hover({
description: 'Settings menu'
})
// Hover using CSS selector
await opensteer.hover({
selector: '.profile-avatar',
description: 'User avatar'
})
// Hover to display tooltip
await opensteer.hover({
description: 'Help icon'
})
// Extract tooltip text
const tooltip = await opensteer.getElementText({
description: 'Tooltip'
})
// Hover over parent menu
await opensteer.hover({
description: 'File menu'
})
// Hover over submenu
await opensteer.hover({
description: 'Export submenu'
})
// Click final option
await opensteer.click({
description: 'Export as PDF'
})
// Hover at a specific point within the element
await opensteer.hover({
description: 'Image preview',
position: { x: 100, y: 50 }
})
// Force hover even if element is not immediately actionable
await opensteer.hover({
description: 'Hidden menu trigger',
force: true
})
// Use element counter from snapshot
await opensteer.hover({
element: 23,
description: 'Navigation item'
})