2

How Selenium will behave for following conditions:

WHEN ELEMENT IS FOUND AT 6 SEC --Implicit wait = 5sec Explicit wait= 10 sec

WHEN ELEMENT IS FOUND AT 6 SEC --Implicit wait = 10sec Explicit wait= 5 sec

WHEN ELEMENT IS FOUND AT 11 SEC --Implicit wait = 10sec Explicit wait= 10 sec

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
QASateesh
  • 27
  • 3
  • Does this answer your question? [Clarification of the cause of mixing Implicit and Explicit waits in Selenium doc](https://stackoverflow.com/questions/29474296/clarification-of-the-cause-of-mixing-implicit-and-explicit-waits-in-selenium-doc) – Prophet Dec 23 '21 at 14:42

1 Answers1

0

To clear off all the speculations, as per the Selenium official docs:

Warning: Do not mix implicit and explicit waits. Doing so can cause unpredictable wait times. For example, setting an implicit wait of 10 seconds and an explicit wait of 15 seconds could cause a timeout to occur after 20 seconds.

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352