Use of “addSelectionAndWait” and “removeSelectionAndWait” command

 “addSelectionAndWait” command in selenium IDE When you are adding selection into multi select list box and page reloading due to the adding selection, you need to use addSelectionAndWait command to handle page loading event. You can use addSelection if page not reloading after adding selection. I have not any perfect example of page reloading when … Read more

“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