百度智能小程序 点击元素
element.tap
解释:点击元素。
element.tap(): Promise<void>
示例代码:
automator.launch().then(async smartProgram => {
const const page = await smartProgram.currentPage()
const element = await page.$('.click-here');
await element.tap();
})