> ## Documentation Index
> Fetch the complete documentation index at: https://docs.smooth.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# Hover

> Hover over elements on the page

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

<CodeGroup>
  ```python Python theme={null}
  from smooth import SmoothClient

  client = SmoothClient()

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

## Parameters

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

## Examples

**Revealing dropdown menus:**

<CodeGroup>
  ```python Python theme={null}
  task = client.run(
      task="Hover over the 'Products' menu and click on 'Enterprise'",
      additional_tools={
          "hover": None
      }
  )
  ```
</CodeGroup>

**Viewing tooltips:**

<CodeGroup>
  ```python Python theme={null}
  task = client.run(
      task="Hover over the info icon next to the price to see the tooltip",
      additional_tools={
          "hover": None
      }
  )
  ```
</CodeGroup>
