Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/api/queries/children.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,14 @@ cy.get('ul').children('.active')

- `.children()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.children()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.children()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.children()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/closest.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ cy.get('p.error').closest('.banner')

- `.closest()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.closest()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.closest()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.closest()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/contains.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -459,14 +459,14 @@ cy.contains('Age').find('input').type('29')

- `.contains()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.contains()`will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.contains()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.contains()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/eq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,14 @@ cy.get('li').eq(-2).should('contain', 'sphynx') // true

- `.eq()` will automatically [retry](/guides/core-concepts/retry-ability) until
the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.eq()` will automatically [retry](/guides/core-concepts/retry-ability) until
all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.eq()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.eq()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/filter.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ cy.get('[data-testid="testattr"]').filter(':contains("Hello\u00a0world")')

- `.filter()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.filter()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.filter()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.filter()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/find.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ cy.get('#parent').find('li')

- `.find()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.find()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.find()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.find()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/first.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,14 @@ cy.get('li').first()

- `.first()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.first()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.first()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.first()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/focused.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ cy.focused().should('have.attr', 'name', 'username')

- `cy.focused()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `cy.focused()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `cy.focused()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `cy.focused()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/get.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -229,14 +229,14 @@ it('disables on click', () => {

- `cy.get()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `cy.get()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `cy.get()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `cy.get()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/last.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,14 @@ cy.get('li').last()

- `.last()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.last()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.last()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.last()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/next.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,14 @@ cy.get('li').next('.selected')

- `.next()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.next()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.next()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.next()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/nextall.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ cy.get('li').nextAll('.selected')

- `.nextAll()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.nextAll()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.nextAll()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.nextAll()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/nextuntil.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ cy.get('#veggies').nextUntil('#nuts')

- `.nextUntil()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.nextUntil()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.nextUntil()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.nextUntil()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/not.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ cy.get('ul>li').not('.active').should('have.length', 4) // true

- `.not()` will automatically [retry](/guides/core-concepts/retry-ability) until
the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.not()` will automatically [retry](/guides/core-concepts/retry-ability) until
all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.not()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.not()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/parent.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@ cy.get('li').parent('.sub-nav')

- `.parent()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.parent()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.parent()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.parent()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/parents.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ cy.get('li.active').parents('.main-nav')

- `.parents()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.parents()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.parents()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.parents()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/parentsuntil.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ cy.get('.active').parentsUntil('.nav')

- `.parentsUntil()` will automatically
[retry](/guides/core-concepts/retry-ability) until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.parentsUntil()` will automatically
[retry](/guides/core-concepts/retry-ability) until all chained assertions have
passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.parentsUntil()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.parentsUntil()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/prev.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ cy.get('li').prev('.active')

- `.prev()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.prev()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.prev()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.prev()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/prevall.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ cy.get('li').prevAll('.selected')

- `.prevAll()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.prevAll()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.prevAll()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.prevAll()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/prevuntil.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ cy.get('#nuts').prevUntil('#veggies')

- `.prevUntil()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.prevUntil()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.prevUntil()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.prevUntil()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/shadow.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ cy.get('.shadow-host').shadow().find('.my-button').click()

- `.shadow()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.shadow()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s) host(s) a shadow root.
- `.shadow()` will automatically [retry](/guides/core-concepts/retry-ability)
Expand All @@ -69,7 +69,7 @@ cy.get('.shadow-host').shadow().find('.my-button').click()
### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.shadow()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.shadow()` can time out waiting for the element(s) to host a shadow root.
- `.shadow()` can time out waiting for assertions you've added to pass.

Expand Down
4 changes: 2 additions & 2 deletions docs/api/queries/siblings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ cy.get('li').siblings('.active')

- `.siblings()` will automatically [retry](/guides/core-concepts/retry-ability)
until the element(s)
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.siblings()` will automatically [retry](/guides/core-concepts/retry-ability)
until all chained assertions have passed.

### Timeouts [<Icon name="question-circle"/>](/guides/core-concepts/introduction-to-cypress#Timeouts) {#Timeouts}

- `.siblings()` can time out waiting for the element(s) to
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Default-Assertions).
[exist in the DOM](/guides/core-concepts/introduction-to-cypress#Implicit-Assertions).
- `.siblings()` can time out waiting for assertions you've added to pass.

## Command Log
Expand Down