Selenium IDE – Generating random number using javascript with example

Sometimes you need random numbers in your regression test case of software web application. Let me give you examples. 1. searching records with record id on web application 2. Creating and accessing URLs for random record ids. In this kind of conditions, you need to generate random numbers to feed data.Selenium IDE has not any … Read more

Storing and Reusing Information in Selenium IDE

“How to Store and Reuse Information in Selenium IDE ?” This question is asked by one of my blog reader through Ask A Question page so let me share it with all of you. It might helps you too for software testing using selenium IDE. Question is as bellow.Question :  Using Selenium IDE, how do you: 1. … Read more

Selenium IDE “assertElementHeight” and “assertElementWidth” commands with examples

“assertElementHeight” and “assertElementWidth” are assertion commands and useful to verify and assert if expected height and with don’t match with actual height and width of element on software application page. I posted article about “storeElementHeight” and “storeElementWidth” before and described how selenium helps us to store element’s height and width in variable. Height and width are measured … Read more

Selenium IDE “storeElementIndex” and “verifyElementIndex” Commands Examples

“storeElementIndex” and “verifyElementIndex” Commands are used for store and verify index of an element node respectively. If you want to verify the placement sequence of an element on the page then you need to use “storeElementIndex” or “verifyElementIndex” or “assertElementIndex” command. It will return index of targeted element. Relative index of element is calculated from … Read more