在页面上搜索包含指定文本的元素。
可以使用另一个元素作为起点来搜索元素。
默认情况下,提供的文本被视为子字符串,因此 'foo' 也将匹配 'foobar'
如果您需要进行精确比较,请将 { exact: true } 作为第二个参数提供。

用法

                    browser.element.findByText(text, [options])
                

示例

export default {
  demoTest(browser: NightwatchAPI): void {
    // Search by the substring matching.
    const inputs = browser.element.findByText('group of people');

    // Search for the exact occurrence.
    const images = browser.element.findByText(
      'The nostalgic office',
      { exact: true }
    );
  }
}

参数

名称 类型 描述
文本 字符串
选项
可选
[对象 对象]

返回值

类型 描述
ScopedWebElement