@@ -101,7 +101,7 @@ getByText(
101
101
options ?: {
102
102
exact?: boolean ;
103
103
normalizer ?: (text : string ) => string ;
104
- hidden ?: boolean ;
104
+ includeHiddenElements ?: boolean ;
105
105
}
106
106
): ReactTestInstance ;
107
107
```
@@ -127,7 +127,7 @@ getByPlaceholderText(
127
127
options ?: {
128
128
exact?: boolean ;
129
129
normalizer ?: (text : string ) => string ;
130
- hidden ?: boolean ;
130
+ includeHiddenElements ?: boolean ;
131
131
}
132
132
): ReactTestInstance ;
133
133
```
@@ -151,7 +151,7 @@ getByDisplayValue(
151
151
options ?: {
152
152
exact?: boolean ;
153
153
normalizer ?: (text : string ) => string ;
154
- hidden ?: boolean ;
154
+ includeHiddenElements ?: boolean ;
155
155
}
156
156
): ReactTestInstance ;
157
157
```
@@ -175,7 +175,7 @@ getByTestId(
175
175
options ?: {
176
176
exact?: boolean ;
177
177
normalizer ?: (text : string ) => string ;
178
- hidden ?: boolean ;
178
+ includeHiddenElements ?: boolean ;
179
179
}
180
180
): ReactTestInstance ;
181
181
```
@@ -203,7 +203,7 @@ getByLabelText(
203
203
options ?: {
204
204
exact?: boolean ;
205
205
normalizer ?: (text : string ) => string ;
206
- hidden ?: boolean ;
206
+ includeHiddenElements ?: boolean ;
207
207
}
208
208
): ReactTestInstance ;
209
209
```
@@ -229,7 +229,7 @@ getByHintText(
229
229
options ?: {
230
230
exact?: boolean ;
231
231
normalizer ?: (text : string ) => string ;
232
- hidden ?: boolean ;
232
+ includeHiddenElements ?: boolean ;
233
233
}
234
234
): ReactTestInstance ;
235
235
```
@@ -267,7 +267,7 @@ getByRole(
267
267
now ?: number ;
268
268
text ?: TextMatch ;
269
269
},
270
- hidden ?: boolean ;
270
+ includeHiddenElements ?: boolean ;
271
271
}
272
272
): ReactTestInstance ;
273
273
```
@@ -318,7 +318,7 @@ getByA11yState(
318
318
busy?: boolean ,
319
319
},
320
320
options ?: {
321
- hidden ?: boolean ;
321
+ includeHiddenElements ?: boolean ;
322
322
}
323
323
): ReactTestInstance ;
324
324
```
@@ -374,7 +374,7 @@ getByA11yValue(
374
374
text ?: TextMatch ;
375
375
},
376
376
options ?: {
377
- hidden ?: boolean ;
377
+ includeHiddenElements ?: boolean ;
378
378
}
379
379
): ReactTestInstance ;
380
380
```
0 commit comments