Framework Mode - cy.siblings() and cy.closest()
Folder Structure
cypress/ ├── e2e/ # Test specs │ ├── example.cy.js # Example test file │ └── siblingClosest.cy.js # Tests for cy.siblings() and cy.closest() ├── fixtures/ # Test data files (JSON, etc.) │ └── example.json ├── support/ # Custom commands and reusable utilities │ ├── commands.js # Custom Cypress commands │ └── e2e.js # Support file loaded before tests cypress.config.js # Cypress configuration file