0 votes
in Selenium by
What are the different types of waits available in Web Driver?

1 Answer

0 votes
by
There are two types of waits available in Web Driver:

Implicit Wait

Explicit Wait

Implicit Wait: Implicit waits are used to provide a default waiting time (say 30 seconds) between each consecutive test step/command across the entire test script. Thus, subsequent test step would only execute when the 30 seconds have elapsed after executing the previous test step/command.

Explicit Wait: Explicit waits are used to halt the execution till the time a particular condition is met or the maximum time has elapsed. Unlike Implicit waits, explicit waits are applied for a particular instance only.

Related questions

0 votes
asked Jan 30, 2020 in Selenium by Deepanshu Burreja
0 votes
asked Jan 9 in Selenium by sharadyadav1986
...