<<Previous Post << Complete Tutorial>> Next Post>>
What is End-to-End Testing?
- Log in to the Application
- Search for the required product
- Add the product to the Cart
- Check out the product
- Make payment for the selected product
- View the details of the placed order
- > System Testing – The purpose of System Testing is to check whether all the integrated Units of the System are working together correctly.
- > End-to-End Testing – The purpose of End-to-End Testing is to check whether all the real-time end-to-end user scenarios/flows covering multiple interconnected sub-systems are working correctly.
- > Horizontal End-to-End Testing: End-to-End Testing performed horizontally on the system to check the end-to-end real-time user flows from start to finish. The following is an example of Horizontal End-to-End Testing:
- Log in to the Application
- Search for the required product
- Add the product to the Cart
- Check out the product
- Make payment for the selected product
- View the details of the placed order
- > Vertical End-to-End Testing: End-to-End Testing performed from top layer of the system to the bottom layer of the system. In this testing each and every sub-system of the system is tested independently started from the top layer (UI Layer tests), followed by the API/Web Services tests layer and the bottom Unit Tests layer. For example, testing a scenario of Login functionality started from User Interface layer, connecting the API layer and the Unit layer. Here the testing checks the scenarios starting from UI layer to Unit layer. As part of Vertical End-to-End Testing, the interaction of Web Services and Databases will also be verified in complex systems.

- > End-to-End Testing is performed after System Testing
- > In End-to-End Testing, the communication of the system with hardware, network, database and other third-party application will also be tested.
- > End-to-End Testing is performed from start to finish in order to represent real-world activities performed by the end users in the production/live environments.
- > Both Horizontal and Vertical End-to-End testing types are required for increasing the quality of the software system.
- > End-to-End Testing has the combined benefits of Black Box Testing and White Box Testing.
- > Automation of End-to-End Testing scenarios/flows will result in faster delivery of the Software system.
- > End-to-End Testing is also known as Chain Testing.
Conclusion: End-to-End testing is a type of testing which is performed to verify the software system as a whole. In this testing, end-to-end flows covering the multiple interconnected sub-systems will be created to test the real-world activities performed by the end users in the production/live environments. End-to-End testing is performed horizontally and vertically to increase the test coverage and increase the quality of the software system.
Next Steps:
- > To learn more about Software Testing, continue to the next post (Click on the Next Post link below)
- > Check complete Software Testing Tutorial Contents here (Click here)
Please leave your questions/comments/feedback below.
Happy Learning ?
<<Previous Post << Complete Tutorial>> Next Post>>