How to add dynamic delay in uipath

Hi @sruthesanju ,

Could you please try the suggestions from @pravin_calvin .

if you still want to go for hardcode delay but you want to input as dynamic time out you can store the milliseconds wait time like 1000 or 2000 in the config xls and you could retrieve by using the key value as Config(“TimeoutValue”).tostring and this is come as string output from the config xls but time out property will allow in milliseconds as integer type so we have to convert by using the below expression to get the timeout in integer type. i hope this would helpful to your question. thanks.

cint(Config(“TimeoutValue”).tostring)

2 Likes