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