Framework Mode - User story testing
Folder Structure for User Story Testing
user-story-testing-project/ ├── user_stories/ │ ├── US001_login.feature │ ├── US002_shopping_cart.feature │ └── US003_checkout.feature ├── tests/ │ ├── test_login.py │ ├── test_shopping_cart.py │ └── test_checkout.py ├── data/ │ ├── test_data_login.json │ └── test_data_checkout.json ├── utils/ │ └── helpers.py ├── config/ │ └── config.yaml ├── reports/ │ └── latest_report.html └── README.md