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

“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

Selenium assertion “assertChecked” and “assertNotChecked” with example

There are many assertions available in selenium. Here i am going to describe “assertchecked” and “assertNotChecked” assertion in selenium IDE with example. “assertNotChecked” and “assertchecked” commands works with only check box and radio button. Both the commands are used for verifying check status of check box or radio button. Selenium “assertchecked” assertion command You need to provide checkbox or … Read more

“check”, “uncheck”, “checkAndWait” and “uncheckAndWait” command example of selenium IDE

You can use check and uncheck commands only with checkbox and radio buttons of webpage. Let we see how we can use check command in selenium IDE. “check” command check command will check the check box if have check box on your webpage. You can also select radio button using check command. New Test Command Target … Read more