Framework Mode - Automation maintenance challenges
Folder Structure for Automation Framework
automation-framework/ ├── tests/ │ ├── login_tests.py │ ├── checkout_tests.py │ └── user_profile_tests.py ├── pages/ │ ├── login_page.py │ ├── checkout_page.py │ └── user_profile_page.py ├── utils/ │ ├── helpers.py │ ├── wait_utils.py │ └── logger.py ├── config/ │ ├── config.yaml │ └── credentials.yaml ├── reports/ │ └── latest_report.html ├── conftest.py └── README.md