Skip to content

Commit 90a8ad9

Browse files
author
Kent C. Dodds
authored
Update README.md
1 parent 0ea3104 commit 90a8ad9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ To show some simple examples (from
109109
[cypress/integration/query.spec.js](cypress/integration/query.spec.js) or [cypress/integration/find.spec.js](cypress/integration/find.spec.js)):
110110

111111
```javascript
112-
cy.findAllByText('Jackie Chan').click()
113112
cy.queryByText('Button Text').should('exist')
114113
cy.queryByText('Non-existing Button Text').should('not.exist')
115114
cy.queryByLabelText('Label text', {timeout: 7000}).should('exist')
115+
cy.findAllByText('Jackie Chan').click({multiple: true})
116116
cy.get('form').within(() => {
117117
cy.findByText('Button Text').should('exist')
118118
})

0 commit comments

Comments
 (0)