/** * * Get the computed WAI-ARIA label of an element. * * :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" }) * * * @alias element.getComputedLabel * @return {String} the computed WAI-ARIA label * @type property * */ export declare function getComputedLabel(this: WebdriverIO.Element): Promise; //# sourceMappingURL=getComputedLabel.d.ts.map