cypress icon indicating copy to clipboard operation
cypress copied to clipboard

cy.select() won't work, need to force and select twice

Open unfadding opened this issue 5 years ago • 17 comments

Current behavior:

cy.get('#element').select(value) //won't work

cy.get('#element').select(value, { force: true });
cy.get('#element').select(value, { force: true }); //only works calling twice, using force

Desired behavior:

cy.get('#element').select(value) //want it to work like this

Versions

Cypress 3.3.1 Chrome 74 Windows 10 x64

unfadding avatar May 29 '19 14:05 unfadding