Cypress - Element Interactions
Given the following Cypress code, what will be the value of the input field after execution?
cy.get('#email').type('hello@example.com');
cy.get('#email').clear();
cy.get('#email').type('user@domain.com');