Framework Mode - Why test frameworks structure execution
Folder Structure
selenium-python-project/
├── tests/
│ ├── test_login.py
│ ├── test_checkout.py
│ └── __init__.py
├── pages/
│ ├── login_page.py
│ ├── checkout_page.py
│ └── __init__.py
├── utils/
│ ├── driver_factory.py
│ ├── wait_helpers.py
│ └── __init__.py
├── config/
│ ├── config.yaml
│ └── __init__.py
├── reports/
│ └── latest_report.html
├── conftest.py
└── pytest.ini