Python Selenium - Implicit & Explicit Wait in Selenium

preview_player
Показать описание
Join my Skillshare Classes for 1 Month Free Access

In this Python Selenium video we are going to talk about Implicit & Explicit Wait in Selenium. first we want to learn about selenium implicit waits after that we are going to learn about selenium explicit waits. There will be situations that your test script will not find an element in the web page, because the page is loading slowly, or even that web element is not available in the web page, this could happen due to different reasons, for example the web element on the web page is not loaded by the time your test scripts tries to find it. on that time we will receive negative results or error from our test scripts, so we need to match the speed of the test script with the application's speed by introducing delays in the test script. now there are two methods that you can use in selenium web driver we have implicit and explicit wait.

Get the source codes:

#Python#PythonSelenium#Selenium
Рекомендации по теме
Комментарии
Автор

does the driver searches for element and then goes for implicit wait or it waits for 10 sec and finds the elements? can you pls explain?

sn