Matching Text Patterns – Globbing Patterns in selenium IDE plug in with example

Globbing Patterns – selenium Matching Text Patterns Globbing Patterns is the one of the matching text patterns in selenium. You can describe expected text pattern with command’s target column and can use it with verify and assert commands. We can use globbing pattern when expected text string is dynamic and can use with commands like … Read more

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