Taiko
Documentation

Home / API Reference

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.exactMatch boolean

Option to look for exact match.

Default value
false

args relativeSelector

Proximity selectors


Returns

TextWrapper