Framework Mode - cy.get() with CSS selectors
Folder Structure for Cypress Test Framework
cypress/
├── e2e/ # Test files using cy.get() with CSS selectors
│ ├── login.cy.js # Example test file
│ └── dashboard.cy.js
├── fixtures/ # Test data files (JSON)
│ └── users.json
├── support/ # Support files and custom commands
│ ├── commands.js # Custom cy.get() wrappers or helpers
│ └── e2e.js # Global setup for tests
└── videos/ # Test run videos (auto-generated)
cypress.config.js # Cypress configuration file
package.json # Project dependencies and scripts