Cypress - Element Interactions
Consider the following Cypress code snippet:
What will be the final value typed into the input field?
cy.get('input[name="email"]').type('user@example.com').clear().type('new@example.com')What will be the final value typed into the input field?
