If you want your bot to wait some arbitrary time y...
# 🌎general
b
If you want your bot to wait some arbitrary time you can use an execute code block:
Copy code
javascript
const wait = async (milliseconds) => {
  await new Promise(resolve => setTimeout(resolve, milliseconds))
}
await wait(5000)
This may not accomplish what you want, but it is a way to force the bot to wait a certain period of time as the step is being executed
3 Views