Skip to main content
The Hover tool allows the agent to hover over elements on the page. This is useful for revealing hidden content like dropdown menus, tooltips, or other hover-triggered UI elements.

Usage

from smooth import SmoothClient

client = SmoothClient()

task = client.run(
    task="Hover over the navigation menu to reveal the dropdown options",
    additional_tools={
        "hover": None
    }
)

Parameters

This tool has no configurable parameters. Pass None to enable it with default behavior.

Examples

Revealing dropdown menus:
task = client.run(
    task="Hover over the 'Products' menu and click on 'Enterprise'",
    additional_tools={
        "hover": None
    }
)
Viewing tooltips:
task = client.run(
    task="Hover over the info icon next to the price to see the tooltip",
    additional_tools={
        "hover": None
    }
)