/**
* The Get Element Property command will return the result of getting a property of an
* element.
*
*
:getProperty.js
it('should demonstrate the getProperty command', async () => {
var elem = await $('body')
var tag = await elem.getProperty('tagName')
console.log(tag) // outputs: "BODY"
})
*
*
* @alias element.getProperty
* @param {string} property name of the element property
* @return {unknown} the value of the property of the selected element
*/
export declare function getProperty(this: WebdriverIO.Element, property: string): Promise;
//# sourceMappingURL=getProperty.d.ts.map