Skip to content

Commit 91e7028

Browse files
authored
chore: update driver to 1.39.0-beta (Oct 11) (microsoft#1403)
1 parent 5fe5a3e commit 91e7028

23 files changed

Lines changed: 241 additions & 96 deletions

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Playwright is a Java library to automate [Chromium](https://www.chromium.org/Hom
1111

1212
| | Linux | macOS | Windows |
1313
| :--- | :---: | :---: | :---: |
14-
| Chromium <!-- GEN:chromium-version -->117.0.5938.62<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
15-
| WebKit <!-- GEN:webkit-version -->17.0<!-- GEN:stop --> ||||
16-
| Firefox <!-- GEN:firefox-version -->117.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
14+
| Chromium <!-- GEN:chromium-version -->119.0.6045.9<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
15+
| WebKit <!-- GEN:webkit-version -->17.4<!-- GEN:stop --> ||||
16+
| Firefox <!-- GEN:firefox-version -->118.0.1<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
1717

1818
Headless execution is supported for all the browsers on all platforms. Check out [system requirements](https://playwright.dev/java/docs/next/intro/#system-requirements) for details.
1919

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1878,7 +1878,7 @@ default void scrollIntoViewIfNeeded() {
18781878
*
18791879
* <p> **Usage**
18801880
* <pre>{@code
1881-
* // single selection matching the value
1881+
* // Single selection matching the value or label
18821882
* handle.selectOption("blue");
18831883
* // single selection matching the label
18841884
* handle.selectOption(new SelectOption().setLabel("Blue"));
@@ -1909,7 +1909,7 @@ default List<String> selectOption(String values) {
19091909
*
19101910
* <p> **Usage**
19111911
* <pre>{@code
1912-
* // single selection matching the value
1912+
* // Single selection matching the value or label
19131913
* handle.selectOption("blue");
19141914
* // single selection matching the label
19151915
* handle.selectOption(new SelectOption().setLabel("Blue"));
@@ -1938,7 +1938,7 @@ default List<String> selectOption(String values) {
19381938
*
19391939
* <p> **Usage**
19401940
* <pre>{@code
1941-
* // single selection matching the value
1941+
* // Single selection matching the value or label
19421942
* handle.selectOption("blue");
19431943
* // single selection matching the label
19441944
* handle.selectOption(new SelectOption().setLabel("Blue"));
@@ -1969,7 +1969,7 @@ default List<String> selectOption(ElementHandle values) {
19691969
*
19701970
* <p> **Usage**
19711971
* <pre>{@code
1972-
* // single selection matching the value
1972+
* // Single selection matching the value or label
19731973
* handle.selectOption("blue");
19741974
* // single selection matching the label
19751975
* handle.selectOption(new SelectOption().setLabel("Blue"));
@@ -1998,7 +1998,7 @@ default List<String> selectOption(ElementHandle values) {
19981998
*
19991999
* <p> **Usage**
20002000
* <pre>{@code
2001-
* // single selection matching the value
2001+
* // Single selection matching the value or label
20022002
* handle.selectOption("blue");
20032003
* // single selection matching the label
20042004
* handle.selectOption(new SelectOption().setLabel("Blue"));
@@ -2029,7 +2029,7 @@ default List<String> selectOption(String[] values) {
20292029
*
20302030
* <p> **Usage**
20312031
* <pre>{@code
2032-
* // single selection matching the value
2032+
* // Single selection matching the value or label
20332033
* handle.selectOption("blue");
20342034
* // single selection matching the label
20352035
* handle.selectOption(new SelectOption().setLabel("Blue"));
@@ -2058,7 +2058,7 @@ default List<String> selectOption(String[] values) {
20582058
*
20592059
* <p> **Usage**
20602060
* <pre>{@code
2061-
* // single selection matching the value
2061+
* // Single selection matching the value or label
20622062
* handle.selectOption("blue");
20632063
* // single selection matching the label
20642064
* handle.selectOption(new SelectOption().setLabel("Blue"));
@@ -2089,7 +2089,7 @@ default List<String> selectOption(SelectOption values) {
20892089
*
20902090
* <p> **Usage**
20912091
* <pre>{@code
2092-
* // single selection matching the value
2092+
* // Single selection matching the value or label
20932093
* handle.selectOption("blue");
20942094
* // single selection matching the label
20952095
* handle.selectOption(new SelectOption().setLabel("Blue"));
@@ -2118,7 +2118,7 @@ default List<String> selectOption(SelectOption values) {
21182118
*
21192119
* <p> **Usage**
21202120
* <pre>{@code
2121-
* // single selection matching the value
2121+
* // Single selection matching the value or label
21222122
* handle.selectOption("blue");
21232123
* // single selection matching the label
21242124
* handle.selectOption(new SelectOption().setLabel("Blue"));
@@ -2149,7 +2149,7 @@ default List<String> selectOption(ElementHandle[] values) {
21492149
*
21502150
* <p> **Usage**
21512151
* <pre>{@code
2152-
* // single selection matching the value
2152+
* // Single selection matching the value or label
21532153
* handle.selectOption("blue");
21542154
* // single selection matching the label
21552155
* handle.selectOption(new SelectOption().setLabel("Blue"));
@@ -2178,7 +2178,7 @@ default List<String> selectOption(ElementHandle[] values) {
21782178
*
21792179
* <p> **Usage**
21802180
* <pre>{@code
2181-
* // single selection matching the value
2181+
* // Single selection matching the value or label
21822182
* handle.selectOption("blue");
21832183
* // single selection matching the label
21842184
* handle.selectOption(new SelectOption().setLabel("Blue"));
@@ -2209,7 +2209,7 @@ default List<String> selectOption(SelectOption[] values) {
22092209
*
22102210
* <p> **Usage**
22112211
* <pre>{@code
2212-
* // single selection matching the value
2212+
* // Single selection matching the value or label
22132213
* handle.selectOption("blue");
22142214
* // single selection matching the label
22152215
* handle.selectOption(new SelectOption().setLabel("Blue"));

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4058,7 +4058,7 @@ default ElementHandle querySelector(String selector) {
40584058
*
40594059
* <p> **Usage**
40604060
* <pre>{@code
4061-
* // single selection matching the value
4061+
* // Single selection matching the value or label
40624062
* frame.selectOption("select#colors", "blue");
40634063
* // single selection matching both the value and the label
40644064
* frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4091,7 +4091,7 @@ default List<String> selectOption(String selector, String values) {
40914091
*
40924092
* <p> **Usage**
40934093
* <pre>{@code
4094-
* // single selection matching the value
4094+
* // Single selection matching the value or label
40954095
* frame.selectOption("select#colors", "blue");
40964096
* // single selection matching both the value and the label
40974097
* frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4122,7 +4122,7 @@ default List<String> selectOption(String selector, String values) {
41224122
*
41234123
* <p> **Usage**
41244124
* <pre>{@code
4125-
* // single selection matching the value
4125+
* // Single selection matching the value or label
41264126
* frame.selectOption("select#colors", "blue");
41274127
* // single selection matching both the value and the label
41284128
* frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4155,7 +4155,7 @@ default List<String> selectOption(String selector, ElementHandle values) {
41554155
*
41564156
* <p> **Usage**
41574157
* <pre>{@code
4158-
* // single selection matching the value
4158+
* // Single selection matching the value or label
41594159
* frame.selectOption("select#colors", "blue");
41604160
* // single selection matching both the value and the label
41614161
* frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4186,7 +4186,7 @@ default List<String> selectOption(String selector, ElementHandle values) {
41864186
*
41874187
* <p> **Usage**
41884188
* <pre>{@code
4189-
* // single selection matching the value
4189+
* // Single selection matching the value or label
41904190
* frame.selectOption("select#colors", "blue");
41914191
* // single selection matching both the value and the label
41924192
* frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4219,7 +4219,7 @@ default List<String> selectOption(String selector, String[] values) {
42194219
*
42204220
* <p> **Usage**
42214221
* <pre>{@code
4222-
* // single selection matching the value
4222+
* // Single selection matching the value or label
42234223
* frame.selectOption("select#colors", "blue");
42244224
* // single selection matching both the value and the label
42254225
* frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4250,7 +4250,7 @@ default List<String> selectOption(String selector, String[] values) {
42504250
*
42514251
* <p> **Usage**
42524252
* <pre>{@code
4253-
* // single selection matching the value
4253+
* // Single selection matching the value or label
42544254
* frame.selectOption("select#colors", "blue");
42554255
* // single selection matching both the value and the label
42564256
* frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4283,7 +4283,7 @@ default List<String> selectOption(String selector, SelectOption values) {
42834283
*
42844284
* <p> **Usage**
42854285
* <pre>{@code
4286-
* // single selection matching the value
4286+
* // Single selection matching the value or label
42874287
* frame.selectOption("select#colors", "blue");
42884288
* // single selection matching both the value and the label
42894289
* frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4314,7 +4314,7 @@ default List<String> selectOption(String selector, SelectOption values) {
43144314
*
43154315
* <p> **Usage**
43164316
* <pre>{@code
4317-
* // single selection matching the value
4317+
* // Single selection matching the value or label
43184318
* frame.selectOption("select#colors", "blue");
43194319
* // single selection matching both the value and the label
43204320
* frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4347,7 +4347,7 @@ default List<String> selectOption(String selector, ElementHandle[] values) {
43474347
*
43484348
* <p> **Usage**
43494349
* <pre>{@code
4350-
* // single selection matching the value
4350+
* // Single selection matching the value or label
43514351
* frame.selectOption("select#colors", "blue");
43524352
* // single selection matching both the value and the label
43534353
* frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4378,7 +4378,7 @@ default List<String> selectOption(String selector, ElementHandle[] values) {
43784378
*
43794379
* <p> **Usage**
43804380
* <pre>{@code
4381-
* // single selection matching the value
4381+
* // Single selection matching the value or label
43824382
* frame.selectOption("select#colors", "blue");
43834383
* // single selection matching both the value and the label
43844384
* frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4411,7 +4411,7 @@ default List<String> selectOption(String selector, SelectOption[] values) {
44114411
*
44124412
* <p> **Usage**
44134413
* <pre>{@code
4414-
* // single selection matching the value
4414+
* // Single selection matching the value or label
44154415
* frame.selectOption("select#colors", "blue");
44164416
* // single selection matching both the value and the label
44174417
* frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));

0 commit comments

Comments
 (0)