Framework Mode - cy.type() for text input
Folder Structure
cypress/ ├── e2e/ # Test specs │ └── login.cy.js # Example test using cy.type() ├── fixtures/ # Test data files (JSON) │ └── users.json ├── support/ # Custom commands and utilities │ ├── commands.js # Custom Cypress commands │ └── e2e.js # Global support file └── cypress.config.js # Cypress configuration file