“storeChecked” and “verifyChecked” Commands Tutorials For Selenium IDE

“storeChecked” and “verifyChecked” are check box related commands and are useful to verify current (checked or not checked) condition of check box. Earlier i had published post about 2 related commands – assertChecked and assertNotChecked. All these four commands are working with check box. Now let me come to the point. “storeChecked” and “verifyChecked” are useful for the … Read more

How to Use Selenium IDE “waitForText” and “waitForNotText” commands?

“waitFor” commands of selenium IDE are very useful for your software application regression testing. There are many waitFor commands available in selenium IDE like – “waitForElementPresent ” command will pause selenium until targeted element not present on software web application page,  “waitForPageToLoad” command will force selenium to pause until page not get loaded properly. Same way, “waitForText” … Read more

Selenium – How to select window if window do not have title or name

Selecting new opened window using “selectWindow” command in selenium IDE is very easy if new window has title or name. Click here to view example of “selectWindow” command with title as a target. If window has title then we can add it’s title in target field with “selectWindow” command and this way selenium can identify window. … Read more

How to use “assertSomethingSelected” and “assertNotSomethingSelected” commands in selenium IDE

“assertSelectOptions” and “assertNotSelectOptions” commands are useful to assert that required values in list box are selected or not. Few days back, I had posted article with good working example of “assertSelectOptions” and “assertNotSelectOptions“. “assertSomethingSelected” and “assertNotSomethingSelected” commands  has little different function compared to them. Both these commands are also used for assertion of selection in list box or drop … Read more