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