From 02ac0380a86ce8afaef51a13ddf381840c4e5eae Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 7 Oct 2022 17:21:15 -0700 Subject: [PATCH] chore: roll driver to 1.27.0 (#1092) --- .../java/com/microsoft/playwright/Frame.java | 30 ++++++++++++------- .../microsoft/playwright/FrameLocator.java | 30 ++++++++++++------- .../com/microsoft/playwright/Locator.java | 30 ++++++++++++------- .../java/com/microsoft/playwright/Page.java | 30 ++++++++++++------- scripts/CLI_VERSION | 2 +- 5 files changed, 81 insertions(+), 41 deletions(-) diff --git a/playwright/src/main/java/com/microsoft/playwright/Frame.java b/playwright/src/main/java/com/microsoft/playwright/Frame.java index 8ef8be14..2e0b4be3 100644 --- a/playwright/src/main/java/com/microsoft/playwright/Frame.java +++ b/playwright/src/main/java/com/microsoft/playwright/Frame.java @@ -796,12 +796,14 @@ public interface Frame { } class GetByAltTextOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByAltTextOptions setExact(boolean exact) { this.exact = exact; @@ -810,12 +812,14 @@ public interface Frame { } class GetByLabelOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByLabelOptions setExact(boolean exact) { this.exact = exact; @@ -824,12 +828,14 @@ public interface Frame { } class GetByPlaceholderOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByPlaceholderOptions setExact(boolean exact) { this.exact = exact; @@ -978,12 +984,14 @@ public interface Frame { } class GetByTextOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByTextOptions setExact(boolean exact) { this.exact = exact; @@ -992,12 +1000,14 @@ public interface Frame { } class GetByTitleOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByTitleOptions setExact(boolean exact) { this.exact = exact; diff --git a/playwright/src/main/java/com/microsoft/playwright/FrameLocator.java b/playwright/src/main/java/com/microsoft/playwright/FrameLocator.java index 37f914ef..19f22039 100644 --- a/playwright/src/main/java/com/microsoft/playwright/FrameLocator.java +++ b/playwright/src/main/java/com/microsoft/playwright/FrameLocator.java @@ -51,12 +51,14 @@ import java.util.regex.Pattern; public interface FrameLocator { class GetByAltTextOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByAltTextOptions setExact(boolean exact) { this.exact = exact; @@ -65,12 +67,14 @@ public interface FrameLocator { } class GetByLabelOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByLabelOptions setExact(boolean exact) { this.exact = exact; @@ -79,12 +83,14 @@ public interface FrameLocator { } class GetByPlaceholderOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByPlaceholderOptions setExact(boolean exact) { this.exact = exact; @@ -233,12 +239,14 @@ public interface FrameLocator { } class GetByTextOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByTextOptions setExact(boolean exact) { this.exact = exact; @@ -247,12 +255,14 @@ public interface FrameLocator { } class GetByTitleOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByTitleOptions setExact(boolean exact) { this.exact = exact; diff --git a/playwright/src/main/java/com/microsoft/playwright/Locator.java b/playwright/src/main/java/com/microsoft/playwright/Locator.java index 8a3d382f..f616b514 100644 --- a/playwright/src/main/java/com/microsoft/playwright/Locator.java +++ b/playwright/src/main/java/com/microsoft/playwright/Locator.java @@ -672,12 +672,14 @@ public interface Locator { } class GetByAltTextOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByAltTextOptions setExact(boolean exact) { this.exact = exact; @@ -686,12 +688,14 @@ public interface Locator { } class GetByLabelOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByLabelOptions setExact(boolean exact) { this.exact = exact; @@ -700,12 +704,14 @@ public interface Locator { } class GetByPlaceholderOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByPlaceholderOptions setExact(boolean exact) { this.exact = exact; @@ -854,12 +860,14 @@ public interface Locator { } class GetByTextOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByTextOptions setExact(boolean exact) { this.exact = exact; @@ -868,12 +876,14 @@ public interface Locator { } class GetByTitleOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByTitleOptions setExact(boolean exact) { this.exact = exact; diff --git a/playwright/src/main/java/com/microsoft/playwright/Page.java b/playwright/src/main/java/com/microsoft/playwright/Page.java index 22d92336..54b699f2 100644 --- a/playwright/src/main/java/com/microsoft/playwright/Page.java +++ b/playwright/src/main/java/com/microsoft/playwright/Page.java @@ -1144,12 +1144,14 @@ public interface Page extends AutoCloseable { } class GetByAltTextOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByAltTextOptions setExact(boolean exact) { this.exact = exact; @@ -1158,12 +1160,14 @@ public interface Page extends AutoCloseable { } class GetByLabelOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByLabelOptions setExact(boolean exact) { this.exact = exact; @@ -1172,12 +1176,14 @@ public interface Page extends AutoCloseable { } class GetByPlaceholderOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByPlaceholderOptions setExact(boolean exact) { this.exact = exact; @@ -1326,12 +1332,14 @@ public interface Page extends AutoCloseable { } class GetByTextOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByTextOptions setExact(boolean exact) { this.exact = exact; @@ -1340,12 +1348,14 @@ public interface Page extends AutoCloseable { } class GetByTitleOptions { /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public Boolean exact; /** - * Whether to find an exact match: case-sensitive and whole-string. Default to false. + * Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular + * expression. */ public GetByTitleOptions setExact(boolean exact) { this.exact = exact; diff --git a/scripts/CLI_VERSION b/scripts/CLI_VERSION index cd818323..5db08bf2 100644 --- a/scripts/CLI_VERSION +++ b/scripts/CLI_VERSION @@ -1 +1 @@ -1.27.0-beta-1665092193000 +1.27.0