📜  我们可以同时使用隐式等待和显式等待吗?无论代码示例

📅  最后修改于: 2022-03-11 14:55:59.602000             🧑  作者: Mango

代码示例1
Mixing both of them can cause unpredictable wait times.

Implicit wait is defined only once in the code.
It will remain same throughout the driver object instance.

Explicit wait is defined whenever it is necessary in the code. 
This wait will call at the time of execution. It is a conditional wait.

Explicit wait will override the implicit wait whereever
explicit wait is applied. So, Explicit Wait gets first preference
then Implicit Wait.