How to use array with selenium ide for parameterisation

We already learnt about data driven testing by attaching external data file with selenium IDE in my previous post. In that case we have used “storeEval” command to fetch data from external .js file. Another way of data driven testing in selenium IDE is using push command. Now let we learn how can we create … Read more

Selenium IDE “verifyNotSelectedIndex” and “verifyNotSelectedIndexes” Command Example

“verify” and “assert” are same in function but difference between both of them is when “verify” command fails selenium will not stop execution of remaining commands while selenium IDE will stop execution on failure of “assert” command. “verifyNotSelectedIndex” and “verifyNotSelectedIndexes” are verification commands so selenium IDE will not stop its execution even if anyone from them … 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

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