Selenium IDE assertAlertNotPresent and assertAlertPresent commands examples

This guide will show you how to use the assertAlertNotPresent and assertAlertPresent commands in Selenium IDE. You’ll learn how to validate the absence of JavaScript alerts in your test flow and understand the difference between assert and verify commands with practical examples. “assertAlertNotPresent” and “assertAlertPresent” are assertion commands of selenium IDE. Both are works with … Read more

How and where to use “Rollup” command in selenium IDE

“Rollup” command is used as a bunch of commands in selenium IDE. “Rollup” command is very useful feature in selenium IDE to reduce size of test case. Let me tell you one example for better understanding. Suppose we are testing any mail login software application features considering bellow given scenarios. Software Test Scenario1 : Login … Read more

Selenium IDE – Generating Random Alpha Numeric Or Numeric String

We already learnt about random number generation and concatenation of random number with other string like email id in Selenium IDE – Generating random number using javascript with example post. Now let me give you few examples for generating random alpha numeric string, generating only random numeric string of specified length using javascript to use in your … Read more

Selenium IDE “Stored Variables Viewer” plugin to view value of variable

In Selenium IDE test cases, we often using variables to store values like numbers, string, URL etc.. in it to use it in other commands. If you don’t know, let me tell you one thing that with the help of “echo” command, we can view current stored value of variable in execution log during software … Read more