Framework Mode - Transitioning to automation
Folder Structure for Automation Framework
automation-framework/ ├── tests/ # Automated test scripts │ ├── login_tests/ # Tests for login features │ ├── checkout_tests/ # Tests for checkout process │ └── ... ├── pages/ # Page objects representing UI pages │ ├── login_page.py │ ├── home_page.py │ └── ... ├── utils/ # Helper functions and utilities │ ├── browser_manager.py │ ├── data_loader.py │ └── ... ├── config/ # Configuration files │ ├── config.yaml # Environment and browser settings │ └── credentials.yaml # Secure test credentials ├── reports/ # Test execution reports ├── conftest.py # Test setup and fixtures (for Pytest) └── README.md # Project overview and instructions