getComputedLabel
Get the computed WAI-ARIA label of an element.
Usage
$(selector).getComputedLabel()
Example
it('should demonstrate the getComputedLabel command', () => {
browser.url('https://www.google.com/ncr')
const elem = $('*[name="q"]');
console.log(elem.getComputedLabel()); // outputs: "Search"
})