diff --git a/playwright/src/main/java/com/microsoft/playwright/Page.java b/playwright/src/main/java/com/microsoft/playwright/Page.java index 9565c799..fb619bed 100644 --- a/playwright/src/main/java/com/microsoft/playwright/Page.java +++ b/playwright/src/main/java/com/microsoft/playwright/Page.java @@ -5462,7 +5462,9 @@ public interface Page extends AutoCloseable { * Browser#newContext Browser.newContext()} allows to set viewport size (and more) for all pages in the context at once. * *

{@code page.setViewportSize} will resize the page. A lot of websites don't expect phones to change size, so you should set the - * viewport size before navigating to the page. + * viewport size before navigating to the page. {@link Page#setViewportSize Page.setViewportSize()} will also reset + * {@code screen} size, use {@link Browser#newContext Browser.newContext()} with {@code screen} and {@code viewport} parameters if you need + * better control of these properties. *

{@code
    * Page page = browser.newPage();
    * page.setViewportSize(640, 480);
diff --git a/playwright/src/main/java/com/microsoft/playwright/options/Proxy.java b/playwright/src/main/java/com/microsoft/playwright/options/Proxy.java
index 2e376646..0d437e20 100644
--- a/playwright/src/main/java/com/microsoft/playwright/options/Proxy.java
+++ b/playwright/src/main/java/com/microsoft/playwright/options/Proxy.java
@@ -23,7 +23,7 @@ public class Proxy {
    */
   public String server;
   /**
-   * Optional coma-separated domains to bypass proxy, for example {@code ".com, chromium.org, .domain.com"}.
+   * Optional comma-separated domains to bypass proxy, for example {@code ".com, chromium.org, .domain.com"}.
    */
   public String bypass;
   /**
@@ -39,7 +39,7 @@ public class Proxy {
     this.server = server;
   }
   /**
-   * Optional coma-separated domains to bypass proxy, for example {@code ".com, chromium.org, .domain.com"}.
+   * Optional comma-separated domains to bypass proxy, for example {@code ".com, chromium.org, .domain.com"}.
    */
   public Proxy setBypass(String bypass) {
     this.bypass = bypass;
diff --git a/scripts/CLI_VERSION b/scripts/CLI_VERSION
index 3cec6e07..941b2514 100644
--- a/scripts/CLI_VERSION
+++ b/scripts/CLI_VERSION
@@ -1 +1 @@
-1.16.0-next-1634054506000
+1.16.0-next-1634661437000