在页面上搜索元素。找到的元素将作为特殊网页元素对象(具有附加的便捷方法)返回。
参数是元素选择器,可以作为字符串或对象(具有“选择器”和“定位策略”属性)指定。
可以使用另一个元素作为起点搜索元素。
用法
browser.element.findAll(syntax)
示例
export default {
async demoTest(browser: NightwatchAPI): Promise<void> {
const buttonsElement = browser.element.findAll('button.submit-form');
// Get an array of found elements.
const buttons = await buttonsElement;
// Use an object to customise locating behaviour.
const sections = browser.element
.findAll({ selector: 'section', locateStrategy: 'css selector' });
}
}
参数
返回
类型 |
描述 |
Array.<ScopeWebElement> |
|