Framework Mode - Action chains
Folder Structure
selenium_project/ ├── src/ │ ├── pages/ │ │ ├── base_page.py │ │ └── home_page.py │ ├── tests/ │ │ └── test_action_chains.py │ ├── utils/ │ │ └── action_helpers.py │ └── config/ │ └── config.py ├── requirements.txt └── pytest.ini
This structure keeps page objects, tests, utilities, and configuration organized.