“storeSelectOptions” and “storeValue” commands in selenium IDE

“storeSelectOptions” Command We can use “storeSelectOptions” command with only list box and drop downs. Function of this command is it will store all option labels names of targeted drop down or targeted list box in to variable. See bellow given example. New Test Command Target Value storeSelectOptions ctrl55_Contentitem_State label storeValue chk_box_01 value In above example, … Read more

Selenium IDE commands “storeSelectedLabel” and “storeSelectedLabels”

“storeSelectedLabel” Command We can use “storeSelectedLabel” Command only with drop down and list box. When you want to know or you need to compare selected option value of drop down with some other value at that time first you need to store value of selected label. In such condition you can use “storeSelectedLabel” Command. Let … 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

“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