Framework Mode - pytest with Selenium setup
Folder Structure
project-root/ ├── tests/ │ ├── test_login.py │ ├── test_search.py │ └── __init__.py ├── pages/ │ ├── login_page.py │ ├── search_page.py │ └── __init__.py ├── utils/ │ ├── selenium_helpers.py │ └── __init__.py ├── config/ │ ├── config.yaml │ └── __init__.py ├── conftest.py ├── requirements.txt └── pytest.ini