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

Selenium IDE “focus” and “keyUp” commands with example

“focus” Command in Selenium IDE “focus” is useful to set focus on targeted fields. Generally it is used with input fields like text box, text area, radio button, check box, button etc.. It will simply move cursor on targeted element or field. Selenium “keyUp” Command “keyUp” command is generally used with “keyDown” Command. Sometimes, “keyPress” … Read more