Selenium “storeAttribute” example to store URL or any other attribute value of element node

How to use “storeAttribute” command in selenium “storeAttribute” command stores the attribute value of specified element in given variable. You can store any attribute’s value using “storeAttribute” command. You need to provide proper path of element node followed by an @ sign and then the name of the attribute (e.g. a@href . Here “a” is element’s node … Read more

Use ‘storedVars’ with “storeEval” command with example in selenium IDE

Selenium “storeEval” command “storeEval” command is generally used with scripts in selenium IDE software testing tool. It is useful to store result of the script in to specified variable and latter on we can use that variable’s value whenever required. ‘storedVars’ – JavaScript associative array ‘storedVars’ is JavaScript associative array having string indexes and is … 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