Framework Mode - Running tests (pytest command)
Folder Structure
tests/ ├── test_example.py ├── test_login.py ├── test_checkout.py conftest.py pytest.ini requirements.txt
This is a simple pytest project structure. All test files are inside the tests/ folder. The conftest.py file holds shared fixtures and hooks. The pytest.ini file contains pytest configuration.