Framework Mode - What software testing is
Folder Structure of a Simple Testing Project
project-root/ ├── tests/ │ ├── test_login.py │ ├── test_signup.py │ └── test_checkout.py ├── src/ │ └── app_code.py ├── reports/ │ └── test_report.html ├── config/ │ └── config.yaml ├── utils/ │ └── helpers.py └── README.md