@christian-bromann/webdriverio
Version:
A nodejs bindings implementation for selenium 2.0/webdriver
29 lines (24 loc) • 983 B
JavaScript
/**
*
* Determine an element's location on the page. The point (0, 0) refers to the
* upper-left corner of the page. The element's coordinates are returned as a
* JSON object with x and y properties.
*
* Depcrecated command, please use `elementIdRect`.
*
* @param {String} ID ID of a WebElement JSON object to route the command to
* @returns {Object} The X and Y coordinates for the element on the page (`{x:number, y:number}`)
*
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#sessionsessionidelementidlocation
* @type protocol
* @deprecated
*
*/
import { ProtocolError } from '../utils/ErrorHandler'
let elementIdLocation = function (id) {
if (typeof id !== 'string' && typeof id !== 'number') {
throw new ProtocolError('number or type of arguments don\'t agree with elementIdLocation protocol command')
}
return this.requestHandler.create(`/session/:sessionId/element/${id}/location`)
}
export default elementIdLocation