阅读(4955) (0)

百度智能小程序 点击元素

2020-09-04 14:52:02 更新

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();
})