Refer the article New Selenium IDE – Commands (Selenese), for the complete list of Selenium IDE commands and their practical demonstrations.
wait for element not visible is one of the commands in Selenium IDE.
The purpose of the wait for element not visible command is to wait for the element to get disappear from the page i.e. If any required element on the application is by default displayed and then disappear in some time, we can use wait for element not visible command to wait for the element to disappear from the page.
In this article, I will practically demonstrate wait for element not visible command with the below-shown example:
Let’s get started.
New Selenium IDE – Using ‘wait for element not visible’ command
Follow the below steps for practicing wait for element not visible command in Selenium IDE along with me:
1) Let’s write the below code in Selenium IDE to wait for the required text to disappear from the page, and click on the Button once the text disappears:
[su_table alternate=”no”]
Command | Target | Value |
---|---|---|
open | http://omayo.blogspot.com/ | |
wait for element not visible | id=deletesuccess | 30000 |
click | id=alert2 |
[/su_table]
After incorporating the commands in the above table, Our Selenium IDE should look like below:
2) Run the test and observe that Selenium IDE waits for the required text to get disappear from the page, and clicks on the Button once the text is disappeared as shown below:
Here concludes the practical demonstration of wait for element not visible command for waiting for the text to get disappear from the page.
In the next article, I will practically demonstrate another Selenium IDE command.
Next Steps:
- > Check complete Selenium Tutorial Contents here (Click here)
Please leave your questions/comments/feedback below.
Happy Learning ?
On a mission to contribute to the Software Testing Community in all possible ways.
Refer the article New Selenium IDE – Commands (Selenese), for the complete list of Selenium IDE commands and their practical demonstrations.