UNPKG

webdriverio-automation

Version:

WebdriverIO-Automation android ios project

21 lines (19 loc) 288 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = getElementRect; function getElementRect(html, elem) { const { x, y, width, height } = elem.getBoundingClientRect(); return { x, y, width, height }; }