-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
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
fix: change
, input
events are not fired when the same option is selected again.
#19623
Conversation
Thanks for taking the time to open a PR!
|
cy.get('#select-maps').select('de_dust2').select('de_aztec') | ||
cy.get('#select-maps').select('de_aztec').select('de_dust2') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2 tests that use #select-maps
have been changed because it tries to select the already-selected first option. I changed them to select the second one.
system-tests failed because CircleCI doesn't end some tests for me. It's also happening in #19837 |
* develop: feat: gray out the path to system node in cypress run header (#20121) feat: redesign server errors (#20072) test: fix awesome-typescript-loader test and remove test-binary job (#20131) fix: Fix issues with stack traces and command log in Chrome 99 (#20049) fix: `cy.type(' ')` fires click event on button-like elements. (#20067) fix: `change`, `input` events are not fired when the same option is selected again. (#19623) build: publish vue3 on latest (#20099) chore: release @cypress/webpack-preprocessor-v5.11.1 chore: release @cypress/webpack-dev-server-v1.8.1 fix: detect newly added specs in dev-server compilation (#17950) chore: Remove pkg/driver //@ts-nocheck part 3 (#19837) chore: set up semantic-pull-request GitHub Action (#20091) chore: release @cypress/react-v5.12.2 fix: remove nullish coalescing in js files to support node 12 (#20094) docs: update @cypress/webpack-preprocessor links (#19902) refactor: use aliases instead of meta (#19566)
User facing changelog
change
,input
events are not fired when the same option is selected again.Additional details
<option>
is selected,change
,input
events are not be fired in browsers, but Cypress does.How has the user experience changed?
Before:
cy.select
doesn't follow the browser behavior.After:
cy.select
follows it.PR Tasks
cypress-documentation
?type definitions
?cypress.schema.json
?