Framework Mode - Opening URLs (get)
Folder Structure
selenium-python-project/ ├── src/ │ ├── pages/ │ │ └── home_page.py │ ├── tests/ │ │ └── test_open_url.py │ ├── utils/ │ │ └── browser_manager.py │ └── config/ │ └── config.yaml ├── reports/ │ └── test_report.html ├── requirements.txt └── pytest.ini
This structure separates page objects, tests, utilities, and configuration files clearly.