Framework Mode - Regression testing
Folder Structure for Regression Testing Framework
regression-testing-framework/ ├── tests/ │ ├── regression/ │ │ ├── test_login.py │ │ ├── test_checkout.py │ │ └── test_profile_update.py │ └── __init__.py ├── pages/ │ ├── login_page.py │ ├── checkout_page.py │ └── profile_page.py ├── utils/ │ ├── helpers.py │ └── data_loader.py ├── config/ │ ├── config.yaml │ └── credentials.yaml ├── reports/ │ └── latest_report.html ├── conftest.py └── pytest.ini