Skip to content

Commit 6f96ada

Browse files
authored
Change anchor links from Default-Assertions to Implicit Assertions (#5637)
1 parent e30b37b commit 6f96ada

22 files changed

+44
-44
lines changed

docs/api/queries/children.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,14 +123,14 @@ cy.get('ul').children('.active')
123123

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

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

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

136136
## Command Log

docs/api/queries/closest.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ cy.get('p.error').closest('.banner')
7575

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

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

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

8888
## Command Log

docs/api/queries/contains.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,14 +459,14 @@ cy.contains('Age').find('input').type('29')
459459

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

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

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

472472
## Command Log

docs/api/queries/eq.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,14 @@ cy.get('li').eq(-2).should('contain', 'sphynx') // true
138138

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

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

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

151151
## Command Log

docs/api/queries/filter.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,14 @@ cy.get('[data-testid="testattr"]').filter(':contains("Hello\u00a0world")')
132132

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

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

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

145145
## Command Log

docs/api/queries/find.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ cy.get('#parent').find('li')
8383

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

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

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

9696
## Command Log

docs/api/queries/first.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ cy.get('li').first()
8080

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

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

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

9393
## Command Log

docs/api/queries/focused.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ cy.focused().should('have.attr', 'name', 'username')
7171

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

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

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

8484
## Command Log

docs/api/queries/get.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,14 +229,14 @@ it('disables on click', () => {
229229

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

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

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

242242
## Command Log

docs/api/queries/last.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ cy.get('li').last()
8080

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

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

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

9393
## Command Log

0 commit comments

Comments
 (0)