Framework Mode - Python environment setup
Folder Structure
selenium-python-project/ ├── tests/ │ ├── test_login.py │ └── test_search.py ├── pages/ │ ├── login_page.py │ └── search_page.py ├── utils/ │ └── helpers.py ├── config/ │ ├── config.yaml │ └── credentials.yaml ├── drivers/ │ └── chromedriver.exe (or chromedriver for Mac/Linux) ├── requirements.txt ├── pytest.ini └── conftest.py