page.size

解释:获取页面大小。

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

Object 返回参数说明

参数类型说明
widthNumber页面可滚动宽度
heightNumber页面可滚动高度

示例代码

  1. automator.launch().then(async smartProgram => {
  2. const page = await smartProgram.currentPage();
  3. const res = await page.size();
  4. console.log(res.width);
  5. console.log(res.height);
  6. })