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

“check”, “uncheck”, “checkAndWait” and “uncheckAndWait” command example of selenium IDE

You can use check and uncheck commands only with checkbox and radio buttons of webpage. Let we see how we can use check command in selenium IDE. “check” command check command will check the check box if have check box on your webpage. You can also select radio button using check command. New Test Command Target … Read more

“storeAllButtons”, “storeAllFields” and “storeAllLinks” command in selenium IDE

All these three commands useful only some time when you have multiple buttons or multiple fields or multiple links on page and you need ids of every element. Let me describe all these commands with example for better understanding. “storeAllButtons” Command If you are working on any webpage and you need ids of all available … Read more

Use of “select” and “selectAndWait” command in selenium IDE

“select” Command Purpose of “select” command is to select label from drop down/combo box or list box. New Test Command Target Value open http://only-testing-blog.blogspot.com/2014/01/textbox.html select name=FromLB Russia View example of HOW TO SELECT VALUE FROM DROP DOWN IN WEBDRIVER. In this example, You need to add combo box id/Name/Xpath into target column and need to … Read more