What is the difference between Web Wait Until and Delay row?

What is the difference between Web Wait Until and Delay row?

The Web Wait Until step waits for an element to be visible, enabled or present on the web page in Web GUI automation. It will wait for the duration that is specified in the step,
Whereas Delay row step provides the timeout or wait period for each input row before it passed to next step. It is just like Thread.Sleep method from Java, i.e. forcefully hold the execution of next step for specific duration (which is specified in the step)

1 Like

Thank you.