UNPKG

@wdio/image-comparison-core

Version:

Image comparison core module for @wdio/visual-service - WebdriverIO visual testing framework

12 lines (11 loc) 282 B
/** * Get the position of the element to the top of the DOM */ export default function getElementPositionTopDom(element) { return { height: element.offsetHeight, width: element.offsetWidth, x: element.offsetLeft, y: element.offsetTop, }; }