.findByLabelText() 建议编辑
自:3.0.0搜索与给定文本匹配的标签,然后查找与该标签关联的元素。
可以使用另一个元素作为起点搜索元素。
默认情况下,提供的文本被视为子字符串,因此 'foo'
也将匹配 'foobar'
。
如果你需要精确比较,请提供 { exact: true }
作为第二个参数。
用法
browser.element.findByLabelText(text, [options])
示例
export default {
demoTest(browser: NightwatchAPI): void {
// Search by the substring matching.
const image = browser.element.findByLabelText('dreamers');
// Search for the exact occurrence.
const image = browser.element.findByLabelText(
'A group of people sitting in front of a computer.',
{ exact: true }
);
}
}
参数
名称 | 类型 | 描述 |
---|---|---|
文本 |
字符串 | |
选项 可选 |
[object Object] |
返回值
类型 | 描述 |
---|---|
ScopedWebElement |