Framework Mode - Test functions
Folder Structure
tests/ ├── test_login.py ├── test_shopping_cart.py ├── test_checkout.py └── conftest.py utils/ ├── helpers.py └── data_provider.py pytest.ini requirements.txt
This structure keeps all test functions inside the tests/ folder. Each test file groups related test functions. The conftest.py file holds shared fixtures.