Posts

Showing posts with the label Test Automation

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. T...