Files
xod/packages/xod-client-browser/test-func/utils/getBoundingClientRect.js
Evgeny Kochetkov e6ab08e297 chore(infra): format code with prettier
Just `yarn lint  --fix`
2018-03-05 17:59:03 +03:00

17 lines
371 B
JavaScript

export default function getBoundingClientRect(page, elementHandle) {
return page.evaluate(el => {
// otherwise we'll get an empty object
const {
bottom,
height,
left,
right,
top,
width,
x,
y,
} = el.getBoundingClientRect();
return { bottom, height, left, right, top, width, x, y };
}, elementHandle);
}