Selenium IDE Tutorial For “waitForEditable” And “waitForNotEditable” Commands With Example

Selenium IDE is free, easy and simple record and play regression testing tool and it is very easy to prepare regression testing test cases of any software web application if flow of execution is not much more complex and harder. More complex applications can not be automated in selenium IDE and we need to use … Read more

Selenium IDE “waitForChecked” and “waitForNotChecked” Commands With Examples

Check box is very essential element of any software web application page and you will find it on many pages so obviously we need to include it in our automation process. Selenium IDE has few commands which are specially developed for checkbox. In my earlier posts, we had seen many check box related commands like … 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