Framework Mode - Headless mode
Folder Structure of a Cypress Test Project
cypress/ ├── e2e/ # Test specs (end-to-end tests) │ ├── login.cy.js # Example test file │ └── dashboard.cy.js ├── fixtures/ # Test data files (JSON, etc.) │ └── users.json ├── support/ # Custom commands and reusable utilities │ ├── commands.js │ └── e2e.js # Global setup for tests cypress.config.js # Cypress configuration file package.json # Project dependencies and scripts