cypress force and multiple code example
Example 1: cypress type force
cy.get('whatever').type('Test all the things', { force: true });
Example 2: cypress multiple true
cy.get('whatever').type('Test all the things', { multiple: true });
cy.get('whatever').type('Test all the things', { force: true });
cy.get('whatever').type('Test all the things', { multiple: true });