Framework Mode - Parameterized tests
Folder Structure
test_project/ ├── tests/ │ ├── test_login.py │ ├── test_search.py │ └── test_checkout.py ├── pages/ │ ├── login_page.py │ ├── search_page.py │ └── checkout_page.py ├── utils/ │ ├── driver_factory.py │ ├── test_data.py │ └── helpers.py ├── config/ │ ├── config.yaml │ └── credentials.yaml ├── conftest.py └── pytest.ini