chore: roll driver to 1.27.0 (#1092)

This commit is contained in:
Yury Semikhatsky 2022-10-07 17:21:15 -07:00 committed by GitHub
parent bb4f3297e8
commit 02ac0380a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 81 additions and 41 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -1 +1 @@
1.27.0-beta-1665092193000
1.27.0