pythonseleniumselenium-webdriversleepimplicitwait

Python & Selenium: Difference between driver.implicitly_wait() and time.sleep()


Yes, I know both are used to wait for some specified time.

Selenium:

driver.implicitly_wait(10)

Python:

import time
time.sleep(10)

Is there any difference between these two?


Solution