cypress
cypress copied to clipboard
cy.select() won't work, need to force and select twice
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