“addSelection” and “removeSelection” command example in selenium IDE

“addSelection” Command In multiselect list box, when you need to select multiple values from list box, “addSelection” command will be helpful in selenium IDE. “Select” command will select only single value from list box but “addSelection” command will add new value selection in list box means previously selected values will remain selected as it is … Read more

Use of “break” and “goBack” Commands in selenium IDE

“break” Command Main use of “break” command is to halt execution of script until user resume it again manually. Supposing if you want to take some actions manually at any specific stage of your currently running script, then you need to halt your current execution and you can do it with “break” command. See bellow … Read more

“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