Selenium “verifyVisible” and “verifyNotVisible” commands with sample example

Using “verifyVisible” and “verifyNotVisible” commands in selenium Sometimes during running the script, you need to verify that specified element on the page is visible or hidden. You can use “verifyVisible” and “verifyNotVisible” commands only for the verification of the element visibility on the page. It will return just “True” and “false” based on the element visibility on page … Read more

Use of “mouseOver”, “mouseOut”, “mouseOverAndWait” and “mouseOutAndWait” commands in selenium IDE

You can use mouseOver and mouseOut command when your targeted software web page element has effect on mouse over and mouse out. Targeted element can be button or image or link or anything else.  Suppose you have one image on software web page and it is changing image when you move mouse on it. Now if you … Read more

“pause”, “refresh” and “waitForPageToLoad” commands in selenium IDE

“pause” Command “pause” command is simple wait command and useful for stop execution of selenium IDE software automation testing tool for given time. In bellow given example, it will wait for 5 second and then it will execute next “refresh” command. New Test Command Target Value open https://www.google.co.in/ pause 5000 refresh waitForPageToLoad 10000 open https://www.google.co.in/imghp?hl=en&tab=wi … Read more