@testim/testim-cli
Version:
Command line interface for running Testing on you CI
30 lines (23 loc) • 1.06 kB
JavaScript
/**
*
* Determine an element's location on the screen once it has been scrolled into view.
*
* *Note:* This is considered an internal command and should only be used to determine
* an element's location for correctly generating native events.
*
* @param {String} ID ID of a WebElement JSON object to route the command to
* @returns {Object} The X and Y coordinates for the element (`{x:number, y:number}`)
*
* @see https://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/element/:id/location_in_view
* @type protocol
*
*/
var ErrorHandler = require('../utils/ErrorHandler.js');
module.exports = function elementIdLocationInView (id) {
if(typeof id !== 'string' && typeof id !== 'number') {
throw new ErrorHandler.ProtocolError('number or type of arguments don\'t agree with elementIdLocationInView protocol command');
}
var requestPath = '/session/:sessionId/element/:id/location_in_view';
requestPath = requestPath.replace(/:id/gi, id);
return this.requestHandler.create(requestPath);
};