element.value

解释:获取元素值。

  1. element.value(): Promise<string>

示例代码

  1. automator.launch().then(async smartProgram => {
  2. const page = await smartProgram.reLaunch('/pages/input/input');
  3. const element = await page.$('.small-ipt');
  4. // 此处为输入内容
  5. const res = await element.value();
  6. });