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"
})