Framework Mode - should() with chainers
Folder Structure
cypress/ ├── e2e/ # Test files with .cy.js or .spec.js │ ├── login.cy.js # Example test using should() with chainers │ └── dashboard.cy.js ├── fixtures/ # Static test data (JSON files) │ └── users.json ├── support/ # Custom commands and reusable utilities │ ├── commands.js # Custom Cypress commands │ └── e2e.js # Global support file └── cypress.config.js # Cypress configuration file