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
CommandTargetValue
storeSelectedIndexctrl5_Main_ddlStateindexno
echo${indexno}
storeSelectedIndexesctrl5_Main_ddlStateindexnos
echo${indexnos}

(Note : Click here to view examples of other store commands.)

In above example, ctrl5_Main_ddlState target element is list box.Here command "storeSelectedIndex" will store index value of current selected option of target element ctrl5_Main_ddlState list box into variable "indexno". We can also use this command with any drop down. We can use "storeSelectedIndex " if there is
selected only one option from list box. If there are multi selected option into target element then we have to use storeSelectedIndexes command


"storeSelectedIndexes" Command

Same as "storeSelectedIndex" command, "storeSelectedIndexes" command will be used with drop down or list box to get index value of multiple selected options. In above example, "storeSelectedIndexes" command will store index of all selected options of element "ctrl5_Main_ddlState" into variable "indexnos". we can use "echo" for seeing stored values into given variable.

4 comments:

  1. Same as "" command -> Same as "storeSelectedIndex" command..

    ReplyDelete
  2. Is there any base Url for the above script

    ReplyDelete
  3. You can use bellow URL. But you need to change Id of select box
    http://only-testing-blog.blogspot.in/2014/01/textbox.html

    ReplyDelete