In the previous chapter, you learned how to set up the environment for Python 3 for Linux, MacOS, and Windows computers. You also looked at a few popular IDEs for Python. In this chapter, we will get started with concepts of test automation. Then we will explore a light and easy way to learn the test automation framework in Python 3, called
doctest
.
A Brief Introduction to Software Testing Concepts
The textbook definition of software testing says that software testing means executing a program or application to find any bugs. Usually, there are multiple stakeholders in the process of software ...