Selenium IDE Tutorials – “assertConfirmationNotPresent” and “assertConfirmationPresent” Example

My all tutorials on Selenium IDE are with practical examples and you can view all command examples on Example Page -1 and Example Page -2. Let me describe you 2 more selenium IDE commands which are related to confirmation message. We have already seen how to use “assertConfirmation” and “verifyConfirmation” commands. “assertConfirmationNotPresent” and “assertConfirmationPresent” are very related … Read more

Selenium IDE “assertTable” and “assertNotTable” Command Examples

Selenium IDE has too many assertion commands and “assertTable” and “assertNotTable” are the part of them. “assertTable” and “assertNotTable” are useful to for table data assertion. Both are working opposite to each other. Both are looking for targeted text in to specified cell address. Based on the command, if condition will not match then command will … Read more

Selenium IDE Example- Disabling or enabling JavaScript when running your test

JavaScript is the most important component of software web application. Developers generally using JavaScript to generate alert, to generate confirmation message, to handle client side validation etc.. If you will disable JavaScript of your browser then you will not get alert message or confirmation message or client side validation message on your action. Let we … Read more

“verifyNotAlert” and “assertNotAlert” Commands With Examples In Selenium IDE

“verifyNotAlert” and “assertNotAlert” are assertion commands of selenium IDE. Both are works opposite to “verifyAlert” and “assertAlert” commands. First of all you look at example of “verifyAlert” and “assertAlert” Commands and then execute bellow given example to understand actual function of “verifyNotAlert” and “assertNotAlert” commands. All these commands are works with only alert box. Let me describe … Read more