Framework Mode - System testing
Folder Structure for System Testing Project
system-testing-project/ ├── config/ │ ├── environments/ │ │ ├── dev.env │ │ ├── test.env │ │ └── prod.env │ └── config.yaml ├── tests/ │ ├── system/ │ │ ├── test_user_login.py │ │ ├── test_payment_flow.py │ │ └── test_data_integrity.py │ └── integration/ ├── utilities/ │ ├── logger.py │ ├── data_loader.py │ └── api_client.py ├── reports/ │ └── latest_report.html ├── conftest.py └── pytest.ini