Selenium for testing alert on page using “verifyAlertPresent” and “verifyAlertNotPresent” command

“verifyAlertPresent” Command Alert testing with selenium is not very hard. In the Selenium IDE plug-in, there are many commands available related to verification. One of them is “verifyAlertPresent” for verification of alerts on the page. Sometimes, when you take some action on the page, it shows an alert message in a popup. If you want … Read more

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

How to use “selectWindow” and “waitForPopUp” Commands example in selenium

“waitForPopUp” Command Remember one thing that selenium IDE software automation testing tool can handle only one window at a time. When you are taking some action like clicking on link or button and open new popup window then how to handle it in selenium IDE software automation tool? “selectWindow” command will help you to select … 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