Framework Mode - HTML report generation
Folder Structure
test_project/ ├── tests/ │ ├── test_login.py │ ├── test_checkout.py │ └── __init__.py ├── pages/ │ ├── login_page.py │ ├── checkout_page.py │ └── __init__.py ├── reports/ │ └── (generated HTML reports here) ├── utils/ │ ├── driver_factory.py │ ├── logger.py │ └── __init__.py ├── config/ │ ├── config.yaml │ └── __init__.py ├── conftest.py └── pytest.ini