“storeLocation” and “storeTitle” commands in selenium IDE

“storeLocation” Command “storeLocation” command is useful to store current selected window’s URL in selenium IDE software testing tool. See bellow given example for more reference. New Test Command Target Value open https://www.google.co.in storeLocation i echo ${i} In this example, My software web application’s URL will be stored into variable “i” and now i can use … Read more

“pause”, “refresh” and “waitForPageToLoad” commands in selenium IDE

“pause” Command “pause” command is simple wait command and useful for stop execution of selenium IDE software automation testing tool for given time. In bellow given example, it will wait for 5 second and then it will execute next “refresh” command. New Test Command Target Value open https://www.google.co.in/ pause 5000 refresh waitForPageToLoad 10000 open https://www.google.co.in/imghp?hl=en&tab=wi … Read more

“assertTextPresent” and “assertTextNotPresent” command in selenium IDE

“assertTextPresent” command “assertTextPresent” command is useful for verifying and asserting selenium if given text is not present on page. It will return false as error if specified text is not present on page and will stop execution. New Test Command Target Value open https://www.google.co.in/ assertTextPresent Maps verifyTextPresent Maps In above example, selenium IDE software testing … 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