Framework Mode - Test automation pyramid
Test Automation Pyramid: Folder Structure
test-automation-project/ ├── unit/ │ ├── test_module1.py │ └── test_module2.py ├── integration/ │ ├── test_integration1.py │ └── test_integration2.py ├── e2e/ │ ├── test_login_flow.py │ └── test_checkout_flow.py ├── utils/ │ ├── helpers.py │ └── fixtures.py ├── config/ │ ├── config.yaml │ └── env_variables.py ├── reports/ │ └── latest_report.html └── README.md