Selenium IDE – How “assertNotSelectedLabel” and “assertNotSelectedLabels” commands works

“assertNotSelectedLabel” and “assertNotSelectedLabels” are very useful assertions in selenium IDE software for drop down and list box type elements. However you can look at other related commands examples on this Link. As you know, If any of the above assert command will fail, selenium IDE will stop its execution immediately. However in case of verification … Read more

Selenium IDE Tutorial For “assertSelectedIndex” And “assertSelectedIndexes”

There are many tutorial posts available related to selenium IDE assert commands to use them in your software web application regression test case. Let we discuss two more assertion commands – “assertSelectedIndex” And “assertSelectedIndexes”. Both of these are working with single select or multi- select software application page elements like drop down and list box. These are good … Read more

Use Of “storeSelectedValue” and “storeSelectedValues” In Selenium IDE With Example

We already learnt “storeSelectedIndex” and “storeSelectedIndexes” commands with examples in my earlier post. “storeSelectedIndex” is storing index of currently single selected option from list box and  “storeSelectedIndexes” command is useful to store index of multiple selected options from list box. Same way, “storeSelectedValue” and “storeSelectedValues” are used with current selected label or labels of list box located … 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