Skip to main content
Use Wait to add timing gaps between UI actions when pages, dialogs, or app states need time to update.
Inside Computer Use, the subagent calls wait only when an accessibility read is empty or still loading — not before every step. See the agent tools reference.

What it does

  • Pauses execution for a given number of seconds.
  • Accepts numeric values and enforces a valid range.

Input

  • seconds (required): positive number of seconds to pause (max 3600).

Typical use

  • Add a short wait after navigation.
  • Pause after submit/click before reading context again.
  • Stabilize multi-step flows where UI renders asynchronously.

Good pairing