0

what is the difference between implicit and explicit wait at driver level. Which one is driver level wait. If we give implicit and explicit wait in our code. Which one will have first priority.

  • Possible dublicate : https://stackoverflow.com/questions/10404160/when-to-use-explicit-wait-vs-implicit-wait-in-selenium-webdriver – Shubham Jain Nov 20 '17 at 07:22
  • https://stackoverflow.com/questions/22656615/what-is-difference-between-implicit-wait-vs-explicit-wait-in-selenium-webdriver – Shubham Jain Nov 20 '17 at 07:22
  • Possible duplicate of [What is difference between Implicit wait Vs. Explicit wait in selenium webdriver?](https://stackoverflow.com/questions/22656615/what-is-difference-between-implicit-wait-vs-explicit-wait-in-selenium-webdriver) – Shubham Jain Nov 20 '17 at 07:22

1 Answers1

0

implicit wait is implemented in the driver. explicit wait is implement in the selenium library in the programming language your code is written in.

it is not defined which will have priority if implicit and explicit is mixed.

read here for more info:

tl;dr: if you mix you will have a bad time.

Lesmana
  • 25,663
  • 9
  • 82
  • 87