Framework Mode - Cypress CLI execution
Folder Structure for Cypress Test Project
cypress/ ├── e2e/ # Test specs (test cases) │ ├── login.cy.js # Example test file │ └── dashboard.cy.js ├── fixtures/ # Test data files (JSON, etc.) │ └── user.json ├── support/ # Custom commands and reusable utilities │ ├── commands.js # Custom Cypress commands │ └── e2e.js # Support file loaded before tests ├── videos/ # Videos of test runs (auto-generated) ├── screenshots/ # Screenshots on test failures (auto-generated) cypress.config.js # Cypress configuration file package.json # Project dependencies and scripts