Framework Mode - Dynamic test data generation
Folder Structure
cypress/ ├── e2e/ # Test specs │ └── userTests.cy.js # Example test using dynamic data ├── fixtures/ # Static test data (JSON files) │ └── example.json ├── support/ # Custom commands and utilities │ ├── commands.js # Custom Cypress commands │ ├── dataGenerator.js # Dynamic test data generation functions │ └── index.js # Support file loaded before tests cypress.config.js # Cypress configuration file package.json # Project dependencies and scripts