Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: mention that exact option is ignored for regex #17912

Merged
merged 1 commit into from Oct 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/api/params.md
Expand Up @@ -1074,7 +1074,7 @@ Text to locate the element for.
* since: v1.27
- `exact` <[boolean]>

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.

## locator-get-by-role-role
* since: v1.27
Expand Down
60 changes: 40 additions & 20 deletions packages/playwright-core/types/types.d.ts
Expand Up @@ -2457,7 +2457,8 @@ export interface Page {
*/
getByAltText(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand All @@ -2476,7 +2477,8 @@ export interface Page {
*/
getByLabel(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand All @@ -2494,7 +2496,8 @@ export interface Page {
*/
getByPlaceholder(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand Down Expand Up @@ -2589,7 +2592,8 @@ export interface Page {
*/
getByText(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand All @@ -2606,7 +2610,8 @@ export interface Page {
*/
getByTitle(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand Down Expand Up @@ -5543,7 +5548,8 @@ export interface Frame {
*/
getByAltText(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand All @@ -5562,7 +5568,8 @@ export interface Frame {
*/
getByLabel(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand All @@ -5580,7 +5587,8 @@ export interface Frame {
*/
getByPlaceholder(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand Down Expand Up @@ -5675,7 +5683,8 @@ export interface Frame {
*/
getByText(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand All @@ -5692,7 +5701,8 @@ export interface Frame {
*/
getByTitle(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand Down Expand Up @@ -9966,7 +9976,8 @@ export interface Locator {
*/
getByAltText(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand All @@ -9985,7 +9996,8 @@ export interface Locator {
*/
getByLabel(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand All @@ -10003,7 +10015,8 @@ export interface Locator {
*/
getByPlaceholder(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand Down Expand Up @@ -10098,7 +10111,8 @@ export interface Locator {
*/
getByText(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand All @@ -10115,7 +10129,8 @@ export interface Locator {
*/
getByTitle(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand Down Expand Up @@ -15221,7 +15236,8 @@ export interface FrameLocator {
*/
getByAltText(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand All @@ -15240,7 +15256,8 @@ export interface FrameLocator {
*/
getByLabel(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand All @@ -15258,7 +15275,8 @@ export interface FrameLocator {
*/
getByPlaceholder(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand Down Expand Up @@ -15353,7 +15371,8 @@ export interface FrameLocator {
*/
getByText(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand All @@ -15370,7 +15389,8 @@ export interface FrameLocator {
*/
getByTitle(text: string|RegExp, options?: {
/**
* 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.
*/
exact?: boolean;
}): Locator;
Expand Down