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

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

Example of “waitForAllFields” and “waitForAllButtons” command in selenium IDE

“waitForAllFields” Command Sometimes when page speed or internet speed is too much slow and page taking too much time to load its element in that case if your targeted element not appears on page withing timeout period then your script will fail. In such cases you need to use commands like “waitForAllFields” and “waitForAllButtons” in … Read more