getComputedLabel
Get the computed WAI-ARIA label of an element.
Usage
$(selector).getComputedLabel()
Example
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"
})