Framework Mode - Smoke testing and sanity testing
Folder Structure
smoke_sanity_tests_project/ ├── tests/ │ ├── smoke/ │ │ ├── test_login_smoke.py │ │ └── test_checkout_smoke.py │ ├── sanity/ │ │ ├── test_payment_sanity.py │ │ └── test_profile_update_sanity.py │ └── __init__.py ├── pages/ │ ├── login_page.py │ ├── checkout_page.py │ ├── payment_page.py │ └── profile_page.py ├── utils/ │ ├── helpers.py │ └── data_loader.py ├── config/ │ ├── config.yaml │ └── env_variables.py ├── reports/ │ └── latest_report.html ├── conftest.py └── pytest.ini