Framework Mode - Why fixtures provide reusable test setup
Folder Structure
project-root/ ├── tests/ │ ├── test_login.py │ ├── test_cart.py │ └── test_checkout.py ├── conftest.py ├── fixtures/ │ ├── user_fixtures.py │ └── product_fixtures.py ├── utils/ │ └── helpers.py └── pytest.ini