Skip to main content

isEqual

Return true if the selected element matches with the provided one.

Usage

await $(selector).isEqual(el)

Parameters

NameTypeDetails
elElementelement to compare with

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
});

Returns

  • <Boolean> return: true if elements are equal

Welcome! How can I help?

WebdriverIO AI Copilot