Framework Mode - Using fixtures in tests
Folder Structure
cypress/ ├── e2e/ # Test specs │ └── login.cy.js # Example test using fixtures ├── fixtures/ # Test data files (JSON, CSV, etc.) │ └── user.json # User data fixture ├── support/ # Custom commands and utilities │ ├── commands.js # Custom Cypress commands │ └── e2e.js # Support file loaded before tests cypress.config.js # Cypress configuration file