Framework Mode - CRUD operation verification
Folder Structure
crud-verification-project/ ├── tests/ │ ├── create_tests.py │ ├── read_tests.py │ ├── update_tests.py │ └── delete_tests.py ├── pages/ │ └── resource_page.py ├── utils/ │ ├── api_client.py │ └── helpers.py ├── config/ │ └── config.yaml ├── reports/ │ └── test_report.html └── conftest.py