Framework Mode - Test modules
Folder Structure of a Pytest Project
project-root/ ├── tests/ │ ├── test_login.py │ ├── test_shopping_cart.py │ ├── test_checkout.py │ └── __init__.py ├── src/ │ └── app_code.py ├── conftest.py ├── pytest.ini └── requirements.txt