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

“clickAt” and “clickAtAndWait” commands with example in selenium IDE

 “clickAt” selenium IDE command“clickAt” command is useful when you need to click on specific x,y position of any element of software web application. Sometime this types of conditions occurs at that time you can use clickAt command. You need to fill x,y position value in value field of command. In bellow example of selenium IDE … Read more