Skip to content

Commit 79668f8

Browse files
authored
chore(release-1.15): roll driver to 1.15.0-1633020276000 (#633)
1 parent e5e9a7d commit 79668f8

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class NewContextOptions {
8686
*/
8787
public Double deviceScaleFactor;
8888
/**
89-
* An object containing additional HTTP headers to be sent with every request. All header values must be strings.
89+
* An object containing additional HTTP headers to be sent with every request.
9090
*/
9191
public Map<String, String> extraHTTPHeaders;
9292
/**
@@ -107,7 +107,7 @@ class NewContextOptions {
107107
*/
108108
public HttpCredentials httpCredentials;
109109
/**
110-
* Whether to ignore HTTPS errors during navigation. Defaults to {@code false}.
110+
* Whether to ignore HTTPS errors when sending network requests. Defaults to {@code false}.
111111
*/
112112
public Boolean ignoreHTTPSErrors;
113113
/**
@@ -249,7 +249,7 @@ public NewContextOptions setDeviceScaleFactor(double deviceScaleFactor) {
249249
return this;
250250
}
251251
/**
252-
* An object containing additional HTTP headers to be sent with every request. All header values must be strings.
252+
* An object containing additional HTTP headers to be sent with every request.
253253
*/
254254
public NewContextOptions setExtraHTTPHeaders(Map<String, String> extraHTTPHeaders) {
255255
this.extraHTTPHeaders = extraHTTPHeaders;
@@ -294,7 +294,7 @@ public NewContextOptions setHttpCredentials(HttpCredentials httpCredentials) {
294294
return this;
295295
}
296296
/**
297-
* Whether to ignore HTTPS errors during navigation. Defaults to {@code false}.
297+
* Whether to ignore HTTPS errors when sending network requests. Defaults to {@code false}.
298298
*/
299299
public NewContextOptions setIgnoreHTTPSErrors(boolean ignoreHTTPSErrors) {
300300
this.ignoreHTTPSErrors = ignoreHTTPSErrors;
@@ -510,7 +510,7 @@ class NewPageOptions {
510510
*/
511511
public Double deviceScaleFactor;
512512
/**
513-
* An object containing additional HTTP headers to be sent with every request. All header values must be strings.
513+
* An object containing additional HTTP headers to be sent with every request.
514514
*/
515515
public Map<String, String> extraHTTPHeaders;
516516
/**
@@ -531,7 +531,7 @@ class NewPageOptions {
531531
*/
532532
public HttpCredentials httpCredentials;
533533
/**
534-
* Whether to ignore HTTPS errors during navigation. Defaults to {@code false}.
534+
* Whether to ignore HTTPS errors when sending network requests. Defaults to {@code false}.
535535
*/
536536
public Boolean ignoreHTTPSErrors;
537537
/**
@@ -673,7 +673,7 @@ public NewPageOptions setDeviceScaleFactor(double deviceScaleFactor) {
673673
return this;
674674
}
675675
/**
676-
* An object containing additional HTTP headers to be sent with every request. All header values must be strings.
676+
* An object containing additional HTTP headers to be sent with every request.
677677
*/
678678
public NewPageOptions setExtraHTTPHeaders(Map<String, String> extraHTTPHeaders) {
679679
this.extraHTTPHeaders = extraHTTPHeaders;
@@ -718,7 +718,7 @@ public NewPageOptions setHttpCredentials(HttpCredentials httpCredentials) {
718718
return this;
719719
}
720720
/**
721-
* Whether to ignore HTTPS errors during navigation. Defaults to {@code false}.
721+
* Whether to ignore HTTPS errors when sending network requests. Defaults to {@code false}.
722722
*/
723723
public NewPageOptions setIgnoreHTTPSErrors(boolean ignoreHTTPSErrors) {
724724
this.ignoreHTTPSErrors = ignoreHTTPSErrors;

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ class LaunchPersistentContextOptions {
435435
*/
436436
public Path executablePath;
437437
/**
438-
* An object containing additional HTTP headers to be sent with every request. All header values must be strings.
438+
* An object containing additional HTTP headers to be sent with every request.
439439
*/
440440
public Map<String, String> extraHTTPHeaders;
441441
/**
@@ -485,7 +485,7 @@ class LaunchPersistentContextOptions {
485485
*/
486486
public List<String> ignoreDefaultArgs;
487487
/**
488-
* Whether to ignore HTTPS errors during navigation. Defaults to {@code false}.
488+
* Whether to ignore HTTPS errors when sending network requests. Defaults to {@code false}.
489489
*/
490490
public Boolean ignoreHTTPSErrors;
491491
/**
@@ -692,7 +692,7 @@ public LaunchPersistentContextOptions setExecutablePath(Path executablePath) {
692692
return this;
693693
}
694694
/**
695-
* An object containing additional HTTP headers to be sent with every request. All header values must be strings.
695+
* An object containing additional HTTP headers to be sent with every request.
696696
*/
697697
public LaunchPersistentContextOptions setExtraHTTPHeaders(Map<String, String> extraHTTPHeaders) {
698698
this.extraHTTPHeaders = extraHTTPHeaders;
@@ -784,7 +784,7 @@ public LaunchPersistentContextOptions setIgnoreDefaultArgs(List<String> ignoreDe
784784
return this;
785785
}
786786
/**
787-
* Whether to ignore HTTPS errors during navigation. Defaults to {@code false}.
787+
* Whether to ignore HTTPS errors when sending network requests. Defaults to {@code false}.
788788
*/
789789
public LaunchPersistentContextOptions setIgnoreHTTPSErrors(boolean ignoreHTTPSErrors) {
790790
this.ignoreHTTPSErrors = ignoreHTTPSErrors;

scripts/CLI_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.0-1632336523000
1+
1.15.0-1633020276000

0 commit comments

Comments
 (0)