We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
Experimenting with this great extension, I had kind of a bug with select elements in my test page.
The widget is a simple select element
Code generated cy.get('#typePolice').click(); cy.get('#typePolice').type('1: 1'); cy.get('#typePolice').click();
cy.get('#typePolice').click(); cy.get('#typePolice').type('1: 1'); cy.get('#typePolice').click();
Error message from Cypress cy.click() cannot be called on a <select> element. Use cy.select() command instead to change the value.
cy.click() cannot be called on a <select> element. Use cy.select() command instead to change the value.
After modification, I use the select method cy.get('#typePolice').select('Globale');
cy.get('#typePolice').select('Globale');
If I can contribute, I'd be happy to help.
Alain
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
Experimenting with this great extension, I had kind of a bug with select elements in my test page.
The widget is a simple select element
Code generated
cy.get('#typePolice').click(); cy.get('#typePolice').type('1: 1'); cy.get('#typePolice').click();
Error message from Cypress
cy.click() cannot be called on a <select> element. Use cy.select() command instead to change the value.
After modification, I use the select method
cy.get('#typePolice').select('Globale');
If I can contribute, I'd be happy to help.
Alain
The text was updated successfully, but these errors were encountered: