.findAllByPlaceholderText() 建议编辑
自:3.0.0在页面上搜索具有指定文本的 placeholder
属性的元素。
可以使用另一个元素作为起点搜索元素。
默认情况下,提供的文本被视为子字符串,因此 'foo'
也将匹配 'foobar'
。
如果需要精确比较,请将 { exact: true }
作为第二个参数提供。
用法
browser.element.findAllByPlaceholderText(text, [options])
示例
export default {
demoTest(browser: NightwatchAPI): void {
// Search by the substring matching.
const inputs = browser.element.findAllByPlaceholderText('group of people');
// Search for the exact occurrence.
const images = browser.element.findAllByPlaceholderText(
'Search here',
{ exact: true }
);
const images = browser.element.findAllByPlaceholderText(
'Enter the number',
{ exact: true, suppressNotFoundError: true }
);
}
}
参数
名称 | 类型 | 描述 |
---|---|---|
文本 |
字符串 | |
选项 可选 |
[object Object] |
返回值
类型 | 描述 |
---|---|
Array.<ScopeWebElement> |