Framework Mode - REST API testing basics
Folder Structure
api-test-project/ ├── tests/ │ ├── test_users.py │ ├── test_orders.py │ └── test_products.py ├── utils/ │ ├── api_client.py │ └── helpers.py ├── config/ │ ├── config.yaml │ └── credentials.yaml ├── reports/ │ └── latest_report.html ├── conftest.py └── requirements.txt