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