Cypress - Basics and Setup
What will happen when this Cypress code runs?
cy.get('input[name="email"]').type('user@example.com')
cy.get('input[name="password"]').type('password123')
cy.get('form').submit()
cy.contains('Welcome').should('be.visible')