Framework Mode - Test naming conventions
Folder Structure
tests/ ├── test_login.py ├── test_shopping_cart.py ├── test_checkout.py └── conftest.py
This is a simple pytest project structure. Each test file starts with test_ and contains test functions also starting with test_.