We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ea3104 commit 90a8ad9Copy full SHA for 90a8ad9
README.md
@@ -109,10 +109,10 @@ To show some simple examples (from
109
[cypress/integration/query.spec.js](cypress/integration/query.spec.js) or [cypress/integration/find.spec.js](cypress/integration/find.spec.js)):
110
111
```javascript
112
-cy.findAllByText('Jackie Chan').click()
113
cy.queryByText('Button Text').should('exist')
114
cy.queryByText('Non-existing Button Text').should('not.exist')
115
cy.queryByLabelText('Label text', {timeout: 7000}).should('exist')
+cy.findAllByText('Jackie Chan').click({multiple: true})
116
cy.get('form').within(() => {
117
cy.findByText('Button Text').should('exist')
118
})
0 commit comments