Framework Mode - Selenium components (WebDriver, Grid, IDE)
Folder Structure of a Selenium Python Test Project
selenium-python-project/ ├── tests/ │ ├── test_login.py │ ├── test_search.py │ └── __init__.py ├── pages/ │ ├── login_page.py │ ├── search_page.py │ └── __init__.py ├── utils/ │ ├── driver_factory.py │ ├── config_reader.py │ └── __init__.py ├── resources/ │ ├── config.yaml │ └── test_data.json ├── reports/ │ └── latest_report.html ├── conftest.py ├── requirements.txt └── README.md