mirror of
https://github.com/xodio/xod.git
synced 2026-03-04 07:54:04 +01:00
17 lines
371 B
JavaScript
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);
|
|
}
|