Framework Mode - Logging setup
Folder Structure
selenium-python-project/ ├── tests/ │ ├── test_login.py │ └── test_checkout.py ├── pages/ │ ├── login_page.py │ └── checkout_page.py ├── utils/ │ ├── logger.py │ └── helpers.py ├── config/ │ ├── config.yaml │ └── credentials.yaml ├── drivers/ │ └── chromedriver.exe ├── reports/ │ └── test_report.html ├── conftest.py └── pytest.ini