Framework Mode - cy.reload()
Folder Structure of a 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 code │ ├── commands.js # Custom Cypress commands │ └── e2e.js # Global support file cypress.config.js # Cypress configuration file package.json # Project dependencies and scripts