> For the complete documentation index, see [llms.txt](https://astro-rpa.gitbook.io/astro-rpa-user-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://astro-rpa.gitbook.io/astro-rpa-user-guide/g_elements/el_basic/flow_control/el_logic_wait.md).

# Wait

![](/files/KSothiCiXw9pNcJo9WU8)

Element that stops the process for a specified number of milliseconds.

![](/files/MJJDaxuHQ94g1hMGvbFE)

Properties

\- Waiting\*: \[Int32] Process pause time (ms)

```
C#
System.Threading.Thread.Sleep(50);

Python
System.Threading.Thread.Sleep(50)

JavaScript
_lib.System.Threading.Thread.Sleep(50);
```
