Skip to content

Commit 02ac038

Browse files
authored
chore: roll driver to 1.27.0 (#1092)
1 parent bb4f329 commit 02ac038

File tree

5 files changed

+81
-41
lines changed

5 files changed

+81
-41
lines changed

playwright/src/main/java/com/microsoft/playwright/Frame.java

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -796,12 +796,14 @@ public GetAttributeOptions setTimeout(double timeout) {
796796
}
797797
class GetByAltTextOptions {
798798
/**
799-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
799+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
800+
* expression.
800801
*/
801802
public Boolean exact;
802803

803804
/**
804-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
805+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
806+
* expression.
805807
*/
806808
public GetByAltTextOptions setExact(boolean exact) {
807809
this.exact = exact;
@@ -810,12 +812,14 @@ public GetByAltTextOptions setExact(boolean exact) {
810812
}
811813
class GetByLabelOptions {
812814
/**
813-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
815+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
816+
* expression.
814817
*/
815818
public Boolean exact;
816819

817820
/**
818-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
821+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
822+
* expression.
819823
*/
820824
public GetByLabelOptions setExact(boolean exact) {
821825
this.exact = exact;
@@ -824,12 +828,14 @@ public GetByLabelOptions setExact(boolean exact) {
824828
}
825829
class GetByPlaceholderOptions {
826830
/**
827-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
831+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
832+
* expression.
828833
*/
829834
public Boolean exact;
830835

831836
/**
832-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
837+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
838+
* expression.
833839
*/
834840
public GetByPlaceholderOptions setExact(boolean exact) {
835841
this.exact = exact;
@@ -978,12 +984,14 @@ public GetByRoleOptions setSelected(boolean selected) {
978984
}
979985
class GetByTextOptions {
980986
/**
981-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
987+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
988+
* expression.
982989
*/
983990
public Boolean exact;
984991

985992
/**
986-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
993+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
994+
* expression.
987995
*/
988996
public GetByTextOptions setExact(boolean exact) {
989997
this.exact = exact;
@@ -992,12 +1000,14 @@ public GetByTextOptions setExact(boolean exact) {
9921000
}
9931001
class GetByTitleOptions {
9941002
/**
995-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
1003+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
1004+
* expression.
9961005
*/
9971006
public Boolean exact;
9981007

9991008
/**
1000-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
1009+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
1010+
* expression.
10011011
*/
10021012
public GetByTitleOptions setExact(boolean exact) {
10031013
this.exact = exact;

playwright/src/main/java/com/microsoft/playwright/FrameLocator.java

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,14 @@
5151
public interface FrameLocator {
5252
class GetByAltTextOptions {
5353
/**
54-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
54+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
55+
* expression.
5556
*/
5657
public Boolean exact;
5758

5859
/**
59-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
60+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
61+
* expression.
6062
*/
6163
public GetByAltTextOptions setExact(boolean exact) {
6264
this.exact = exact;
@@ -65,12 +67,14 @@ public GetByAltTextOptions setExact(boolean exact) {
6567
}
6668
class GetByLabelOptions {
6769
/**
68-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
70+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
71+
* expression.
6972
*/
7073
public Boolean exact;
7174

7275
/**
73-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
76+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
77+
* expression.
7478
*/
7579
public GetByLabelOptions setExact(boolean exact) {
7680
this.exact = exact;
@@ -79,12 +83,14 @@ public GetByLabelOptions setExact(boolean exact) {
7983
}
8084
class GetByPlaceholderOptions {
8185
/**
82-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
86+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
87+
* expression.
8388
*/
8489
public Boolean exact;
8590

8691
/**
87-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
92+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
93+
* expression.
8894
*/
8995
public GetByPlaceholderOptions setExact(boolean exact) {
9096
this.exact = exact;
@@ -233,12 +239,14 @@ public GetByRoleOptions setSelected(boolean selected) {
233239
}
234240
class GetByTextOptions {
235241
/**
236-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
242+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
243+
* expression.
237244
*/
238245
public Boolean exact;
239246

240247
/**
241-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
248+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
249+
* expression.
242250
*/
243251
public GetByTextOptions setExact(boolean exact) {
244252
this.exact = exact;
@@ -247,12 +255,14 @@ public GetByTextOptions setExact(boolean exact) {
247255
}
248256
class GetByTitleOptions {
249257
/**
250-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
258+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
259+
* expression.
251260
*/
252261
public Boolean exact;
253262

254263
/**
255-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
264+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
265+
* expression.
256266
*/
257267
public GetByTitleOptions setExact(boolean exact) {
258268
this.exact = exact;

playwright/src/main/java/com/microsoft/playwright/Locator.java

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -672,12 +672,14 @@ public GetAttributeOptions setTimeout(double timeout) {
672672
}
673673
class GetByAltTextOptions {
674674
/**
675-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
675+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
676+
* expression.
676677
*/
677678
public Boolean exact;
678679

679680
/**
680-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
681+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
682+
* expression.
681683
*/
682684
public GetByAltTextOptions setExact(boolean exact) {
683685
this.exact = exact;
@@ -686,12 +688,14 @@ public GetByAltTextOptions setExact(boolean exact) {
686688
}
687689
class GetByLabelOptions {
688690
/**
689-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
691+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
692+
* expression.
690693
*/
691694
public Boolean exact;
692695

693696
/**
694-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
697+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
698+
* expression.
695699
*/
696700
public GetByLabelOptions setExact(boolean exact) {
697701
this.exact = exact;
@@ -700,12 +704,14 @@ public GetByLabelOptions setExact(boolean exact) {
700704
}
701705
class GetByPlaceholderOptions {
702706
/**
703-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
707+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
708+
* expression.
704709
*/
705710
public Boolean exact;
706711

707712
/**
708-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
713+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
714+
* expression.
709715
*/
710716
public GetByPlaceholderOptions setExact(boolean exact) {
711717
this.exact = exact;
@@ -854,12 +860,14 @@ public GetByRoleOptions setSelected(boolean selected) {
854860
}
855861
class GetByTextOptions {
856862
/**
857-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
863+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
864+
* expression.
858865
*/
859866
public Boolean exact;
860867

861868
/**
862-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
869+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
870+
* expression.
863871
*/
864872
public GetByTextOptions setExact(boolean exact) {
865873
this.exact = exact;
@@ -868,12 +876,14 @@ public GetByTextOptions setExact(boolean exact) {
868876
}
869877
class GetByTitleOptions {
870878
/**
871-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
879+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
880+
* expression.
872881
*/
873882
public Boolean exact;
874883

875884
/**
876-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
885+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
886+
* expression.
877887
*/
878888
public GetByTitleOptions setExact(boolean exact) {
879889
this.exact = exact;

playwright/src/main/java/com/microsoft/playwright/Page.java

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1144,12 +1144,14 @@ public GetAttributeOptions setTimeout(double timeout) {
11441144
}
11451145
class GetByAltTextOptions {
11461146
/**
1147-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
1147+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
1148+
* expression.
11481149
*/
11491150
public Boolean exact;
11501151

11511152
/**
1152-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
1153+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
1154+
* expression.
11531155
*/
11541156
public GetByAltTextOptions setExact(boolean exact) {
11551157
this.exact = exact;
@@ -1158,12 +1160,14 @@ public GetByAltTextOptions setExact(boolean exact) {
11581160
}
11591161
class GetByLabelOptions {
11601162
/**
1161-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
1163+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
1164+
* expression.
11621165
*/
11631166
public Boolean exact;
11641167

11651168
/**
1166-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
1169+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
1170+
* expression.
11671171
*/
11681172
public GetByLabelOptions setExact(boolean exact) {
11691173
this.exact = exact;
@@ -1172,12 +1176,14 @@ public GetByLabelOptions setExact(boolean exact) {
11721176
}
11731177
class GetByPlaceholderOptions {
11741178
/**
1175-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
1179+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
1180+
* expression.
11761181
*/
11771182
public Boolean exact;
11781183

11791184
/**
1180-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
1185+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
1186+
* expression.
11811187
*/
11821188
public GetByPlaceholderOptions setExact(boolean exact) {
11831189
this.exact = exact;
@@ -1326,12 +1332,14 @@ public GetByRoleOptions setSelected(boolean selected) {
13261332
}
13271333
class GetByTextOptions {
13281334
/**
1329-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
1335+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
1336+
* expression.
13301337
*/
13311338
public Boolean exact;
13321339

13331340
/**
1334-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
1341+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
1342+
* expression.
13351343
*/
13361344
public GetByTextOptions setExact(boolean exact) {
13371345
this.exact = exact;
@@ -1340,12 +1348,14 @@ public GetByTextOptions setExact(boolean exact) {
13401348
}
13411349
class GetByTitleOptions {
13421350
/**
1343-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
1351+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
1352+
* expression.
13441353
*/
13451354
public Boolean exact;
13461355

13471356
/**
1348-
* Whether to find an exact match: case-sensitive and whole-string. Default to false.
1357+
* Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular
1358+
* expression.
13491359
*/
13501360
public GetByTitleOptions setExact(boolean exact) {
13511361
this.exact = exact;

scripts/CLI_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.27.0-beta-1665092193000
1+
1.27.0

0 commit comments

Comments
 (0)