getComputedRole
取得元素的計算 WAI-ARIA 角色。
用法
$(selector).getComputedRole()
範例
getComputedRole.js
it('should demonstrate the getComputedRole command', async () => {
await browser.url('https://www.google.com/ncr')
const elem = await $('*[name="q"]');
console.log(await elem.getComputedRole()); // outputs: "combobox"
})