Posts

Showing posts from 2014

Installing Selenium IDE

Selenium IDE is available as the Firefox extension, which allows to record and play the test steps and play it back. The tool allows you to edit the recorded scripts. The extension build as IDE, which bundled with lot of features. Using IDE you can also convert the scripts into source of different languages. Steps to follow, Open Firefox Follow as per in the video Goto http://docs.seleniumhq.org/download/ Click on 2.5.6 under Selenium IDE section Allow the installation Once Installation Completed Restart the firefox Video is in a bad quality, will update the high quality video later...

Test Automation - Selenium Way

 Test automation, automates the execution of repetitive and selective tests to validate the outcome of software or product against the expected results. This practice reduce the manual intervention and increases the productive of the team. The test automation is a part of continuous integration where developer can validate the code updates in quicker passion.  Tests can be automated either code-driven or GUI record and playback method. The code-driven testing commonly used in a Test-Driven Development (TDD) using testing frameworks like of NUnit, JUnit and Selenium. GUI record and playback method records the user screen and enables the user to playback them to executes the tests. Code-drive testing is the popular model test automation this enables test automation at different level software development lifecycle.  Selenium is the popular open source testing framework, which can be used to perform both code-driven and GUI based test automation for web applications. The selenium ha