Text to locate the element for.
Optional
options: { Optional
exact?: booleanWhether 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.
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:
You can locate by text substring, exact string, or a regular expression:
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
andsubmit
are matched by theirvalue
instead of the text content. For example, locating by text"Log in"
matches<input type=button value="Log in">
.