element.size

解释:获取元素大小。

  1. element.size(): Promise<Object>

Object 返回参数说明

参数类型说明
widthNumber元素宽度
heightNumber元素高度

示例代码

  1. automator.launch().then(async smartProgram => {
  2. const page = await smartProgram.reLaunch('/pages/api/api');
  3. const element = await page.$('.group-bd');
  4. const res = await element.size();
  5. console.log(res.width, res.height);
  6. });