Use of “setSpeed” and “setTimeout” commands in selenium IDE

“setSpeed” and “setTimeout” are very basic useful commands in selenium IDE software testing tool. User can control selenium speed and timeout period when running the software test script. “setSpeed” Command “setSpeed” Command setup the delay between two command execution or we can say it is useful to managing the execution speed of  selenium IDE software. … Read more

Handling events like focus or blur in selenium with “fireEvent” command

There are many types of HTML DOM Events available on web page. In selenium IDE, “fireEvent” command is the solution to handle such kind of events. Here i am trying to show you the use of “fireEvent” command with focus or blur event. You can handle any other event in this way. “fireEvent” command with … Read more

selenium command “chooseCancelOnNextConfirmation” and “chooseOkOnNextConfirmation” with example

“chooseCancelOnNextConfirmation” command “chooseCancelOnNextConfirmation” command used with confirmation popup box. When you are performing some major action like deleting records at that place you can see this kind of confirmation message box to proceed or to cancel the process. “chooseCancelOnNextConfirmation” command will click on cancel button on this kind of action. Here is the example of … Read more