Selenium IDE plug in example for “verifyEval” and “assertEval” commands

“verifyEval” Command in selenium IDE plug in “verifyEval” Command is very useful when you want to compare two values or string especially when you want to compare result of script with stored values in variable. In bellow given example, I have compared value(5) stored in variable “VarA” with result of javascript{2+3}” script. It will becomes … Read more

Working with “verifyTable” and “verifyNotTable” commands with example in selenium IDE

“verifyTable” Command When you are working with table content with selenium IDE then you must have knowledge of how to use “verifyTable” Command. “verifyTable” Command verifies the text of targeted table’s row and column. With “verifyTable” Command, you must have to specify your row and column matrix with target element. Example table.0.1 describes row no … Read more

Use of “verifyLocation” and “assertLocation” in selenium

“verifyLocation” Command Soometimes you need to check the URL of current selected window to perform some actions. In such cases, selenium has two commands to verify the absolute URL of the current selected page. “verifyLocation” and “assertLocation”. “verifyLocation” command will just verify your trageted URL with absolute URL of the current page and returns error … Read more

Difference between “verifyAlert” and “assertAlert” command in selenium

There are too many commands starting with “verify” and “assert” text. Both these commands are the same excluding one difference and that difference is after the execution of the “verify” command if the condition matches or not selenium will execute the next commands but in case of execution of the “assert” command if the condition … Read more