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

Using “sendKeys” command at place of “type” command in selenium with example

Selenium IDE “sendKeys” command “sendKeys” command works like type command in selenium IDE but there are 2 more functions as bellow in “sendKeys” command which are not available in “type” command. Generally “sendKeys” command is very useful in auto complete text boxes or combo boxes which require explicit key events. 1. “sendKeys” command will not replace the … Read more

type and typeAndWait command in selenium IDE

This guide will show you how to use the type and typeAndWait commands in Selenium IDE to enter text into input fields during test execution. You’ll learn the key differences between these commands, when to use each, and how they behave in real testing scenarios. “type” command “type” command is useful for typing keyboard key … Read more