Check if an element's inner text equals the expected text.

Usage

Example

this.demoTest = function (browser) {
  browser.assert.textEquals('#main', 'The Night Watch');
};

Parameters

Name Type description
definition string | object

The selector (CSS/Xpath) used to locate the element. Can either be a string or an object which specifies element properties.

expected string

text to match text.

msg
Optional
string

Optional log message to display in the output. If missing, one is displayed by default.