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

用法

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

示例

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

    // Search for the exact occurrence.
    const image = browser.element.findByAltText(
      'A group of people sitting in front of a computer.',
      { exact: true }
    );
  }
}

参数

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

返回

类型 描述
Array.<ScopedWebElement>