@christian-bromann/webdriverio
Version:
A nodejs bindings implementation for selenium 2.0/webdriver
24 lines (21 loc) • 711 B
JavaScript
/**
*
* The Get Element Rect command returns the dimensions and coordinates of the given web element.
* The returned value is a dictionary with `x`. `y`, `width` and `height` properties.
*
* Note: this command was recently added to the official Webdriver protocol and might not be
* working with current Selenium driver.
*
* @param {String} ID ID of a WebElement JSON object to route the command to
*
* @see https://w3c.github.io/webdriver/webdriver-spec.html#dfn-get-element-rect
* @type protocol
*
*/
let elementIdRect = function (id) {
return this.requestHandler.create({
path: `/session/:sessionId/element/${id}/rect`,
method: 'GET'
})
}
export default elementIdRect