百度智能小程序 获取元素值
2020-09-05 15:10 更新
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(); // 此处为输入内容
});
以上内容是否对您有帮助:
更多建议: