Selenium IDE “verifyOrdered” and “assertOrdered” Commands Example

“verifyOrdered” and “assertOrdered” commands in selenium IDE are provided to verify the element’s sort order of same parent node on software web application page. It will check sort order of element in ascending order. Look in to bellow given image. Here 1st input node’s sort order is 1 and 2nd input node’s sort order = … Read more

“assignId” and “captureEntirePageScreenshot” commands of selenium IDE

“captureEntirePageScreenshot” command This command is very useful for capture and save full page screenshot. You can use this command anywhere in between. It will store screen shot of current selected browser tab. New Test Command Target Value open http://www.google.com captureEntirePageScreenshot D:\selenium.jpg VIEW CAPTURE SCREENSHOT EXAMPLE IN WEBDRIVER In above example, “captureEntirePageScreenshot” command will capture and … Read more

Use of “storeSelectedIndex” and “storeSelectedIndexes” command in selenium IDE

“storeSelectedIndex” Command storeSelectedIndex works with only select or multi-select target element like drop down and list box. Using this command, you can get option index of selected option. New Test Command Target Value storeSelectedIndex ctrl5_Main_ddlState indexno echo ${indexno} storeSelectedIndexes ctrl5_Main_ddlState indexnos echo ${indexnos} (Note : Click here to view examples of other store commands.) In … 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