Skip to content

Commit c802c87

Browse files
authored
chore: roll driver to 1.16.0-next-1634661437000 (#650)
1 parent ab81b54 commit c802c87

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5462,7 +5462,9 @@ default void setInputFiles(String selector, FilePayload[] files) {
54625462
* Browser#newContext Browser.newContext()} allows to set viewport size (and more) for all pages in the context at once.
54635463
*
54645464
* <p> {@code page.setViewportSize} will resize the page. A lot of websites don't expect phones to change size, so you should set the
5465-
* viewport size before navigating to the page.
5465+
* viewport size before navigating to the page. {@link Page#setViewportSize Page.setViewportSize()} will also reset
5466+
* {@code screen} size, use {@link Browser#newContext Browser.newContext()} with {@code screen} and {@code viewport} parameters if you need
5467+
* better control of these properties.
54665468
* <pre>{@code
54675469
* Page page = browser.newPage();
54685470
* page.setViewportSize(640, 480);

playwright/src/main/java/com/microsoft/playwright/options/Proxy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class Proxy {
2323
*/
2424
public String server;
2525
/**
26-
* Optional coma-separated domains to bypass proxy, for example {@code ".com, chromium.org, .domain.com"}.
26+
* Optional comma-separated domains to bypass proxy, for example {@code ".com, chromium.org, .domain.com"}.
2727
*/
2828
public String bypass;
2929
/**
@@ -39,7 +39,7 @@ public Proxy(String server) {
3939
this.server = server;
4040
}
4141
/**
42-
* Optional coma-separated domains to bypass proxy, for example {@code ".com, chromium.org, .domain.com"}.
42+
* Optional comma-separated domains to bypass proxy, for example {@code ".com, chromium.org, .domain.com"}.
4343
*/
4444
public Proxy setBypass(String bypass) {
4545
this.bypass = bypass;

scripts/CLI_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.16.0-next-1634054506000
1+
1.16.0-next-1634661437000

0 commit comments

Comments
 (0)