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

Different between “verifyText” and “assertText” in selenium

Here let me describe you main difference between assert and verify in selenium IDE software testing tool and selenium RC software testing tool. assert and verify commands are useful for verifying condition match or not. Verify command will verify the condition and if its not match, it will give error message in Log area and will … Read more

“storeText” and “storeTextPresent” command in selenium IDE

“storeText” command “storeText” command in selenium IDE software testing tool is useful to store text value of page element of software web application in to variable for future use. See bellow given example. In this example, When “storeText” command will be executed in selenium IDE software testing tool, value of page element “css=#gb_2 > span.gbts” … Read more

“store” and “echo” command in selenium IDE

 “store” command“store” command is useful to store value or string into variable in selenium IDE software testing tool. When you want to use some value at some other command, you can store that value. Bellow is the example of “store” command in selenium IDE software testing tool. It will store string “Hello” into variable “i”. I … Read more