Framework Mode - Cypress installation (npm install cypress)
Folder Structure
my-cypress-project/
├── cypress/
│ ├── e2e/ # Test files (end-to-end tests)
│ │ └── example.cy.js # Sample test file
│ ├── fixtures/ # Test data files (JSON, etc.)
│ ├── support/ # Custom commands and reusable code
│ │ ├── commands.js # Custom Cypress commands
│ │ └── e2e.js # Support file loaded before tests
├── cypress.config.js # Cypress configuration file
├── node_modules/ # Installed npm packages
├── package.json # Project metadata and dependencies
└── package-lock.json # Exact versions of installed packages