Skip to main content

Regression Testing

Let me explain the Regression Testing with an example. In a electric broad suppose 4 switches are there and 3 of them are working perfectly. Only one switch which is not working. You call the electrician to fix that not working switch. He/She fixes the not working switch and you check that it is now working fine. This is called retesting. Now you will check that other 3 switches which was working file earlier are working fine or not. May be due to fixes of one switch create problem in already correct switches. this is called Regression Testing.

So in terms of Software Testing, When developer assign a new built for the QA team to test and QA team find some bugs in that build they assigned those bugs to the Dev Team to fix. Developer team fixes those bugs and assigned back for the QA team to test. Now QA team will verify the new build to check weather assigned bugs fixes or not and QA team need to validate the related areas of assigned bugs to verify that weather all previous functionality is working fine due to changes done on the software build.  In terms of definition Regression Testing is the type of testing which cover to verify the working functionality (functional and Non functional) that can be changed or wrongly working after enhancement and bug fixes.This is the Verification Method.

The purpose of Software Testing is to ensure that due to new change old functionality should not disturb. The common method of Regression Testing is to run  the old Test Cases or QA team can select the particular set of Test cases for Regression to save the time.

Regression testing is needed as today time because we can not do trust that once developer write the code and QA team tested it. Now until he/she will directly changes the code , it will be working fine. This is called Non regression testing. Whenever any code is updates or new feature added then it may be the chances to produce new bugs that need to be tested for working software correctly.

Regression Testing needed when
  • New feature introduced in the system
  • Bug fixing
  • Changes in code due to changes in Software Requirement.
Regression Testing, Software Testing Help Manually, Manual Testing, Retesting
Image Source Google

Regression Testing is better to perform by using Tools. Today several tools in the market who can perform the Regression Testing. QTP and Selenium are the major Tool for Regression Testing.
QTP is the HP tool and paid version. QTP is best work with the Desktop Application. For QTP we can use VB Scripting language for write the script.
Selenium is the Open source so free available in the market. Selenium is working only with the Web Application and work with many scripting languages like Java, pearl, C# so on for write the script.


Comments

Popular posts from this blog

How to Put Load on a Script in JMeter

In last post we discussed about how to record a test script and Firefox settings to run the script. In this post we will discuss about how the Thread Group will work, how can we put n number of users to perform load testing, In JMeter by using Thread Group, we can create virtual users. Thread Group is a set of thread which work in same scenario. There are multiple thread group are available which is use to configure how the virtual users interest with the application, How much load maintain and till how much time load maintain.

How to take the Screenshot in Selenium WebDriver?

If we want to take the screenshot then we have to convert our WebDriver object into the screenshot object. we need to change the behavior of the drive to take the screenshot . We can do it by casting

JMeter Overview Description

In this article we will go through the multiple section of JMeter and describe the tool information. we will discuss about every component of JMeter tool in this Article so that you can hands on while working on script on JMeter about these components.