Força do tipo Cypress
cy.get('whatever').type('Test all the things', { force: true });
harpwn
cy.get('whatever').type('Test all the things', { force: true });
cy.get('.btn').click() // Click on button
cy.focused().click() // Click on el with focus
cy.contains('Welcome').click() // Click on first el containing 'Welcome'
//https://docs.cypress.io/api/commands/click.html
cy.get('whatever').type('Test all the things', { multiple: true });