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

Selenium IDE “waitForAlert” and “waitForAlertPresent” commands with example

As you know, there are many waitfor commands available in selenium IDE to handle wait conditions of software web applications. Each and every one has different purpose. “waitForAlert” and “waitForAlertPresent” commands are related to alerts. You can view more alert related commands list with example on selenium IDE commands page 1 and page 2. Now let me … Read more