List of Selenium Commands With Examples Part – 1

Selenium IDE commands with examples There are many commands available in selenium IDE software testing tool. I have prepared one selenium commands list and linked some selenium ide command with its examples. So you can click on command link(From bellow given selenium ide commands list table) to view how to and where to use that command … 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

Selenum IDE Example of “assertElementPresent” and “assertElementNotPresent” commands

“assertElementPresent” Command Selenium assert element present command is useful to confirm element availability on page after user taking some action or navigate to some other page. Selenium assert element present will force selenium to stop execution if targeted element not found on the page. It will continue execution if return result of condition “assertElementPresent” = … 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