Framework Mode - Agile testing approach
Folder Structure of an Agile Testing Project
agile-testing-project/
├── docs/ # Documentation for user stories, acceptance criteria
├── tests/ # Automated and manual test cases
│ ├── unit/ # Unit tests for small code parts
│ ├── integration/ # Tests for combined parts
│ ├── functional/ # Tests for features
│ └── exploratory/ # Notes and scripts for exploratory testing
├── automation/ # Automation scripts and helpers
│ ├── page_objects/ # Page Object Models for UI tests
│ ├── utils/ # Utility functions and helpers
│ └── data/ # Test data files
├── config/ # Environment and test configurations
├── reports/ # Test execution reports
└── ci/ # Continuous Integration scripts and configs