“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

“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