> ## Documentation Index
> Fetch the complete documentation index at: https://rpa.bazhuayu.com/helpcenter/llms.txt
> Use this file to discover all available pages before exploring further.

# 等待

> 控制流程执行的节奏与时机，确保页面加载、元素就绪后再执行后续操作。

**等待**类指令让流程在执行关键操作前暂停一段时间或等待特定条件满足，避免因页面未加载完成导致操作失败。

## 适用场景

* **页面加载后再操作**：跳转或刷新后用 等待网页加载 等页面就绪，避免点到还没渲染出来的元素。
* **等待动态内容出现**：列表、弹窗是异步加载的，用 等待页面内容 等目标文本/元素出现或消失再继续。
* **固定节奏间隔**：每轮操作后 等待 固定秒数，给系统或接口留出处理时间、规避限流。
* **等待图像信号**：桌面软件或游戏中用 等待图像 等待某个图标/按钮出现后再操作。

## 指令列表

<CardGroup cols="2">
  <Card title="等待" href="/helpcenter/helpcenter/commands/wait/waitcommand">
    让流程等待指定的时间，然后再执行后面的指令。
  </Card>

  <Card title="等待网页加载" href="/helpcenter/helpcenter/commands/wait/waitpageloadedcommand">
    在指定的时间内，等待网页加载完成。
  </Card>

  <Card title="等待页面内容" href="/helpcenter/helpcenter/commands/wait/waitpagecontentcommand">
    等待指定元素或文本在网页中出现或消失。
  </Card>

  <Card title="等待图像" href="/helpcenter/helpcenter/commands/wait/waitimagecommand">
    等待目标图像出现或消失，再继续执行流程。
  </Card>
</CardGroup>

<Info>
  使用指令过程中遇到问题？前往 [八爪鱼RPA 开发者社区问答板块](https://rpa.bazhuayu.com/community/questions) 提问，获取官方与社区帮助。
</Info>
