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

use “storeElementHeight” and “storeElementWidth” to measure element’s height and width in selenium

“storeElementHeight” command “storeElementHeight” command useful to measure the height of elements like button, textbox, images etc. You need to measure element’s height and width in pixel to pixel testing. Using selenium, you can measure it very easily. “storeElementHeight” command returns height of targeted element and store it into variable specified in value field. Here is … Read more

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