Type Alias getByText

getByText: ((text: string | RegExp, options?: {
    exact?: boolean;
}) => Locator)

Allows locating elements that contain given text.

See also locator.filter([options]) that allows to match by another criteria, like an accessible role, and then filter by the text content.

Usage

Consider the following DOM structure:

<div>Hello <span>world</span></div>
<div>Hello</div>

You can locate by text substring, exact string, or a regular expression:

// Matches <span>
page.getByText('world');

// Matches first <div>
page.getByText('Hello world');

// Matches second <div>
page.getByText('Hello', { exact: true });

// Matches both <div>s
page.getByText(/Hello/);

// Matches second <div>
page.getByText(/^hello$/i);

Details

Matching by text always normalizes whitespace, even with exact match. For example, it turns multiple spaces into one, turns line breaks into spaces and ignores leading and trailing whitespace.

Input elements of the type button and submit are matched by their value instead of the text content. For example, locating by text "Log in" matches <input type=button value="Log in">.

Type declaration

    • (text, options?): Locator
    • Parameters

      • text: string | RegExp

        Text to locate the element for.

      • Optionaloptions: {
            exact?: boolean;
        }
        • Optionalexact?: boolean

          Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular expression. Note that exact match still trims whitespace.

      Returns Locator