Framework Mode - API test automation concepts
Folder Structure
api-test-project/ ├── tests/ │ ├── test_user_api.py │ ├── test_product_api.py │ └── __init__.py ├── api_clients/ │ ├── user_client.py │ ├── product_client.py │ └── __init__.py ├── utils/ │ ├── helpers.py │ ├── validators.py │ └── __init__.py ├── config/ │ ├── config.yaml │ └── __init__.py ├── reports/ │ └── (generated test reports) ├── conftest.py └── requirements.txt