@@ -2457,7 +2457,8 @@ export interface Page {
2457
2457
*/
2458
2458
getByAltText(text: string|RegExp, options?: {
2459
2459
/**
2460
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
2460
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
2461
+ * expression.
2461
2462
*/
2462
2463
exact?: boolean;
2463
2464
}): Locator;
@@ -2476,7 +2477,8 @@ export interface Page {
2476
2477
*/
2477
2478
getByLabel(text: string|RegExp, options?: {
2478
2479
/**
2479
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
2480
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
2481
+ * expression.
2480
2482
*/
2481
2483
exact?: boolean;
2482
2484
}): Locator;
@@ -2494,7 +2496,8 @@ export interface Page {
2494
2496
*/
2495
2497
getByPlaceholder(text: string|RegExp, options?: {
2496
2498
/**
2497
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
2499
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
2500
+ * expression.
2498
2501
*/
2499
2502
exact?: boolean;
2500
2503
}): Locator;
@@ -2589,7 +2592,8 @@ export interface Page {
2589
2592
*/
2590
2593
getByText(text: string|RegExp, options?: {
2591
2594
/**
2592
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
2595
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
2596
+ * expression.
2593
2597
*/
2594
2598
exact?: boolean;
2595
2599
}): Locator;
@@ -2606,7 +2610,8 @@ export interface Page {
2606
2610
*/
2607
2611
getByTitle(text: string|RegExp, options?: {
2608
2612
/**
2609
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
2613
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
2614
+ * expression.
2610
2615
*/
2611
2616
exact?: boolean;
2612
2617
}): Locator;
@@ -5543,7 +5548,8 @@ export interface Frame {
5543
5548
*/
5544
5549
getByAltText(text: string|RegExp, options?: {
5545
5550
/**
5546
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
5551
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
5552
+ * expression.
5547
5553
*/
5548
5554
exact?: boolean;
5549
5555
}): Locator;
@@ -5562,7 +5568,8 @@ export interface Frame {
5562
5568
*/
5563
5569
getByLabel(text: string|RegExp, options?: {
5564
5570
/**
5565
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
5571
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
5572
+ * expression.
5566
5573
*/
5567
5574
exact?: boolean;
5568
5575
}): Locator;
@@ -5580,7 +5587,8 @@ export interface Frame {
5580
5587
*/
5581
5588
getByPlaceholder(text: string|RegExp, options?: {
5582
5589
/**
5583
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
5590
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
5591
+ * expression.
5584
5592
*/
5585
5593
exact?: boolean;
5586
5594
}): Locator;
@@ -5675,7 +5683,8 @@ export interface Frame {
5675
5683
*/
5676
5684
getByText(text: string|RegExp, options?: {
5677
5685
/**
5678
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
5686
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
5687
+ * expression.
5679
5688
*/
5680
5689
exact?: boolean;
5681
5690
}): Locator;
@@ -5692,7 +5701,8 @@ export interface Frame {
5692
5701
*/
5693
5702
getByTitle(text: string|RegExp, options?: {
5694
5703
/**
5695
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
5704
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
5705
+ * expression.
5696
5706
*/
5697
5707
exact?: boolean;
5698
5708
}): Locator;
@@ -9966,7 +9976,8 @@ export interface Locator {
9966
9976
*/
9967
9977
getByAltText(text: string|RegExp, options?: {
9968
9978
/**
9969
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
9979
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
9980
+ * expression.
9970
9981
*/
9971
9982
exact?: boolean;
9972
9983
}): Locator;
@@ -9985,7 +9996,8 @@ export interface Locator {
9985
9996
*/
9986
9997
getByLabel(text: string|RegExp, options?: {
9987
9998
/**
9988
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
9999
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
10000
+ * expression.
9989
10001
*/
9990
10002
exact?: boolean;
9991
10003
}): Locator;
@@ -10003,7 +10015,8 @@ export interface Locator {
10003
10015
*/
10004
10016
getByPlaceholder(text: string|RegExp, options?: {
10005
10017
/**
10006
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
10018
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
10019
+ * expression.
10007
10020
*/
10008
10021
exact?: boolean;
10009
10022
}): Locator;
@@ -10098,7 +10111,8 @@ export interface Locator {
10098
10111
*/
10099
10112
getByText(text: string|RegExp, options?: {
10100
10113
/**
10101
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
10114
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
10115
+ * expression.
10102
10116
*/
10103
10117
exact?: boolean;
10104
10118
}): Locator;
@@ -10115,7 +10129,8 @@ export interface Locator {
10115
10129
*/
10116
10130
getByTitle(text: string|RegExp, options?: {
10117
10131
/**
10118
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
10132
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
10133
+ * expression.
10119
10134
*/
10120
10135
exact?: boolean;
10121
10136
}): Locator;
@@ -15221,7 +15236,8 @@ export interface FrameLocator {
15221
15236
*/
15222
15237
getByAltText(text: string|RegExp, options?: {
15223
15238
/**
15224
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
15239
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
15240
+ * expression.
15225
15241
*/
15226
15242
exact?: boolean;
15227
15243
}): Locator;
@@ -15240,7 +15256,8 @@ export interface FrameLocator {
15240
15256
*/
15241
15257
getByLabel(text: string|RegExp, options?: {
15242
15258
/**
15243
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
15259
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
15260
+ * expression.
15244
15261
*/
15245
15262
exact?: boolean;
15246
15263
}): Locator;
@@ -15258,7 +15275,8 @@ export interface FrameLocator {
15258
15275
*/
15259
15276
getByPlaceholder(text: string|RegExp, options?: {
15260
15277
/**
15261
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
15278
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
15279
+ * expression.
15262
15280
*/
15263
15281
exact?: boolean;
15264
15282
}): Locator;
@@ -15353,7 +15371,8 @@ export interface FrameLocator {
15353
15371
*/
15354
15372
getByText(text: string|RegExp, options?: {
15355
15373
/**
15356
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
15374
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
15375
+ * expression.
15357
15376
*/
15358
15377
exact?: boolean;
15359
15378
}): Locator;
@@ -15370,7 +15389,8 @@ export interface FrameLocator {
15370
15389
*/
15371
15390
getByTitle(text: string|RegExp, options?: {
15372
15391
/**
15373
- * Whether to find an exact match: case-sensitive and whole-string. Default to false.
15392
+ * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
15393
+ * expression.
15374
15394
*/
15375
15395
exact?: boolean;
15376
15396
}): Locator;
0 commit comments