Framework Mode - When to automate vs manual test
Folder Structure for Test Automation Project
project-root/ ├── tests/ # Automated test scripts │ ├── regression/ # Automated regression tests │ ├── smoke/ # Automated smoke tests │ └── exploratory/ # Manual test cases documentation ├── pages/ # Page objects or UI abstractions ├── utils/ # Helper functions and utilities ├── config/ # Configuration files (env, credentials) ├── reports/ # Test execution reports └── ci/ # CI/CD pipeline scripts
This structure supports both automated and manual testing efforts.