阅读(1679)
赞(9)
百度智能小程序 获取元素值
2020-09-04 14:52:00 更新
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(); // 此处为输入内容
});