Framework Mode - Test case writing
Folder Structure for Test Case Writing
project-root/ ├── test-cases/ │ ├── login_tests.md │ ├── signup_tests.md │ └── profile_tests.md ├── test-data/ │ └── user_data.csv ├── test-reports/ │ └── report_2024_06_01.html └── README.md
This simple structure organizes test cases as markdown files inside test-cases/. Test data is stored separately in test-data/. Reports go to test-reports/.