Example of “waitForAllFields” and “waitForAllButtons” command in selenium IDE

“waitForAllFields” Command Sometimes when page speed or internet speed is too much slow and page taking too much time to load its element in that case if your targeted element not appears on page withing timeout period then your script will fail. In such cases you need to use commands like “waitForAllFields” and “waitForAllButtons” in … 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

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

“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