webdriverio
Version:
Next-gen browser and mobile automation test framework for Node.js
24 lines (22 loc) • 688 B
TypeScript
/**
*
* Return true if the selected element matches with the provided one.
*
* <example>
:isEqual.js
it('should detect if an element is clickable', async () => {
const el = await $('#el')
const sameEl = await $('#el')
const anotherEl = await $('#anotherEl')
el.isEqual(sameEl) // outputs: true
el.isEqual(anotherEl) // outputs: false
});
* </example>
*
* @alias element.isEqual
* @param {Element} el element to compare with
* @return {Boolean} true if elements are equal
*
*/
export declare function isEqual(this: WebdriverIO.Element, el: WebdriverIO.Element): Promise<boolean>;
//# sourceMappingURL=isEqual.d.ts.map