阅读(3609)
赞(9)
百度智能小程序 获取元素swan内容
2020-09-04 14:51:58 更新
解释:获取元素 swan 内容。
element.swan(): Promise<string>
示例代码:
automator.launch().then(async smartProgram => {
const page = await smartProgram.reLaunch('/pages/api/api');
const element = await page.$('.group-logo');
const res = await element.swan();
});