In this topic we will understand test automation fundamentals of how a recorded script is replayed and how automation tools recognize objects on the application.
How Does Selenium IDE Replay Scripts?
Read More
In this topic we will understand test automation fundamentals of how a recorded script is replayed and how automation tools recognize objects on the application.
Read More
We can extend Selenium IDE by adding customized actions, assertions and locator-strategies. It is done with the help of JavaScript by adding methods to the Selenium object prototype. On start-up, Selenium will automatically look through the methods on these prototypes, using name patterns to recognize which ones are actions, assertions, and locators.
Let us add a ‘while’ Loop in Selenium IDE with the help of JavaScript. Read More
You can not only edit the steps inside the selenium IDE but you can also add new steps or change the sequence of steps inside the IDE itself.
To do that we need to understand the following –
Test Case Table Pane – Your script is displayed in the test case pane. It has two tabs, one for displaying the command and their parameters in a readable “table” format as shown below. Read More
Debugging is the process of finding and fixing errors in the test script. It is a common step in any script development. To make the process more robust, we can make use a plugin “Power Debugger” for Selenium IDE.
Step 1. To install Power Debugger add-ons, open Firefox browser, launch www.google.com and search for Power Debugger. Click on https://addons.mozilla.org/en-US/firefox/addon/power-debugger-selenium-ide/ link . Read More
The following steps are involved in recording, creating, saving and executing Selenium tests using IDE:
Step 1. Open Firefox Browser Read More
Now we will install Firefox add-on Firebug and FirePath.In Selenium, Firebug helps in inspecting UI elements and finding its associated properties and values.
Step 1 – To install Firebug add-ons, open Firefox browser, launch www.google.com and search for Firebug. Click on Firebug link. Read More
The Selenium Integrated Development Environment (IDE) is an easy-to-use Firefox plug-in to develop Selenium test cases. It provides a Graphical User Interface for recording user actions using Firefox which is used to learn and use Selenium, but it can only be used with Firefox browser as other browsers are not supported.
Step 1– Launch Firefox browser and open URL http://seleniumhq.org/download/ to download selenium IDE from the SeleniumHQ download page. Read More