Framework Mode - Test progress reporting
Folder Structure for Test Progress Reporting Framework
project-root/ ├── tests/ # Test cases organized by feature or module │ ├── login_tests.py │ ├── checkout_tests.py │ └── ... ├── reports/ # Generated test reports (HTML, XML, JSON) │ └── latest_report.html ├── logs/ # Logs capturing test execution details │ └── test_run.log ├── config/ # Configuration files for environments and reporting │ └── config.yaml ├── utils/ # Utility scripts for reporting and logging │ └── report_helper.py ├── conftest.py # Pytest fixtures for setup, teardown, and reporting hooks └── pytest.ini # Pytest configuration including reporting plugins