Framework Mode - Test suite organization
Folder Structure
test-suite/ ├── tests/ │ ├── login_tests/ │ │ ├── test_login_valid.py │ │ └── test_login_invalid.py │ ├── shopping_cart_tests/ │ │ ├── test_add_item.py │ │ └── test_remove_item.py │ └── user_profile_tests/ │ ├── test_update_profile.py │ └── test_view_profile.py ├── fixtures/ │ └── user_fixtures.py ├── utils/ │ ├── helpers.py │ └── data_generators.py ├── config/ │ ├── config.yaml │ └── env_variables.py └── README.md