阅读(4273) (11)

百度智能小程序 获取元素属性

2020-09-04 14:51:56 更新

element.attribute

解释:获取元素属性。

element.attribute(name: string): Promise<string>

参数说明:

属性名类型必填默认值说明
nameString-属性名

示例代码:

automator.launch().then(async smartProgram => {
    const page = await smartProgram.reLaunch('/pages/api/api');
    const element = await page.$('.group-logo');
    const res = await element.attribute('id'); // id
});