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

# Act

> Interact with a web page

## What is `act()`?

```typescript theme={"theme":"vesper"}
await cuehand.act("click on add to cart")
```

<Tabs>
  <Tab title="Do This" icon="check">
    Break your task into single step actions.

    ```typescript theme={"theme":"vesper"}
    await cuehand.act("click on add to cart")
    await cuehand.act("click on checkout")
    ```
  </Tab>

  <Tab title="Don't Do This" icon="xmark">
    Don't try to do everything in one step.

    ```typescript theme={"theme":"vesper"}
    await cuehand.act("click on add to cart and checkout")
    ```
  </Tab>
</Tabs>
