text
This selector lets you identify an element with text. Looks for exact match if not found does contains, accepts proximity selectors.
Examples
await highlight(text('Vehicle'))
await text('Vehicle').exists()
await text('Vehicle', below('text')).exists()
await text('Vehicle', { exactMatch: true }, below('text')).exists()
await text('/Vehicle/').exists() //regex as string
await text(/Vehicle/).exists()
await text(new RegExp('Vehicle')).exists()
Parameters
-
text -
Text/regex to match.
-
_options
-
_options.exactMatchboolean -
Option to look for exact match.
- Default value
-
false
-
argsrelativeSelector -
Proximity selectors