element.size
解释:获取元素大小。
element.size(): Promise<Object>
Object 返回参数说明:
参数 | 类型 | 说明 |
---|---|---|
width | Number | 元素宽度 |
height | Number | 元素高度 |
示例代码:
automator.launch().then(async smartProgram => {
const page = await smartProgram.reLaunch('/pages/api/api');
const element = await page.$('.group-bd');
const res = await element.size();
console.log(res.width, res.height);
});