getComputedLabel
获取元素的计算出的WAI-ARIA标签。
用法
$(selector).getComputedLabel()
示例
getComputedLabel.js
it('should demonstrate the getComputedLabel command', async () => {
await browser.url('https://www.google.com/ncr')
const elem = await $('*[name="q"]');
console.log(await elem.getComputedLabel()); // outputs: "Search"
})