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
Cypress 0.19.4 / 0.20.0 does not generate "change" event same way as the browser. For example in vanilla JS TodoMVC this leads to different results
// fires change event cy.find('input').type('foo{enter}') // does not fire change event cy.find('input').type('foo').type('{enter}')
which shows up in this example repo bahmutov/add-todo-test#1
Good url to test http://todomvc.com/examples/vanillajs/
test
const getItems = () => cy.get('.todo-list li') it('adds 1 todo', () => { const url = 'http://todomvc.com/examples/vanillajs/' cy.visit(url) getItems() .should('have.length', 0) cy.get('.new-todo').type('pass this test').type('{enter}') getItems() .should('have.length', 1) })
The text was updated successfully, but these errors were encountered:
Fix issues with cy.type (#2016)
9f28aea
this grew to a large PR fixing many cy.type issues. fix #365 fix #420 fix #586 fix #593 fix #596 fix #610 fix #651 fix #940 fix #1002 fix #1108 fix #1171 fix #1209 fix #1234 fix #1366 fix #1381 fix #1684 fix #1686 fix #1926 fix #2056 fix #2096 fix #2110 fix #2173 fix #2187
kuceb
Successfully merging a pull request may close this issue.
Cypress 0.19.4 / 0.20.0 does not generate "change" event same way as the browser. For example in vanilla JS TodoMVC this leads to different results
which shows up in this example repo bahmutov/add-todo-test#1
Good url to test http://todomvc.com/examples/vanillajs/
test
The text was updated successfully, but these errors were encountered: