element.value
解释:获取元素值。
element.value(): Promise<string>
示例代码:
automator.launch().then(async smartProgram => {
const page = await smartProgram.reLaunch('/pages/input/input');
const element = await page.$('.small-ipt');
// 此处为输入内容
const res = await element.value();
});