Selenium IDE “assertSelectedLabels” and “assertSelectedValues” Commands With Examples

First of all please look at THIS POST where I have described difference between label and value in drop down or list box. Don’t get confused from these two words. Selenium IDE has many assertion commands and all of them are designed for different purpose. Here i am going to describe you “assertSelectedLabels” and “assertSelectedValues” commands … Read more

Selenium IDE “assertSelectedId” and “assertSelectedIds” Commands With Example

Most of all software web applications contains list box or drop downs on web page and “assertSelectedId” and “assertSelectedIds” commands are very useful to verify and assert the ids of selected label/s from list box. Both these are very good alternatives of “assertSelectedIndex“, “assertSelectedIndexes“, “assertSelectedLabel” commands. You can view few related verification commands like “verifySelectedId“, … Read more

Selenium IDE Example Tutorial On “assertNotSelectedIndexes” and “assertNotSelectedIndex”

In Selenium IDE, “assertNotSelectedIndexes” and “assertNotSelectedIndex” commands are nearest same. Both are working with drop down or list box of software web application page. If you knows how to use “assertNotSelectedLabel” and “assertNotSelectedLabels” commands then it will be very easy for you to understand these 2 commands. “assertNotSelectedIndex” command works with single selected label and “assertNotSelectedIndexes” … Read more

Selenium IDE – When to use “assertNotElementWidth” and “assertNotElementHeight” Commands

We have already seen examples of “assertElementHeight” and “assertElementWidth” commands. In those examples, we have seen that “assertElementHeight” and “assertElementWidth” commands will pass if expected and actual height or width of element will match. Else it will fail and return error message and selenium IDE will stop execution. “assertNotElementWidth” and “assertNotElementHeight” commands are working opposite to “assertElementHeight” … Read more