@testim/testim-cli
Version:
Command line interface for running Testing on you CI
67 lines (52 loc) • 1.81 kB
JavaScript
/**
*
* Get the width and height for an DOM-element based given selector.
*
* <example>
:getElementSize.js
client
.getElementSize('.header-logo-wordmark').then(function(size) {
console.log(size) // outputs: { width: 100, height: 200 }
})
.getElementSize('.header-logo-wordmark', 'width').then(function(width) {
console.log(width) // outputs: 100
})
.getElementSize('.header-logo-wordmark', 'height').then(function(height) {
console.log(height) // outputs: 200
});
* </example>
*
* @param {String} selector element with requested size
* @returns {Object} requested element size (`{width:number, height:number}`)
*
* @uses protocol/elements, protocol/elementIdSize
* @type property
*
*/
var Q = require('q'),
ErrorHandler = require('../utils/ErrorHandler.js');
module.exports = function getElementSize (selector, prop) {
return this.elements(selector).then(function(res) {
if(!res.value || res.value.length === 0) {
// throw NoSuchElement error if no element was found
throw new ErrorHandler(7);
}
var self = this,
elementIdSizeCommands = [];
res.value.forEach(function(elem) {
elementIdSizeCommands.push(self.elementIdSize(elem.ELEMENT));
});
return Q.all(elementIdSizeCommands);
}).then(function(sizes) {
sizes = sizes.map(function(size) {
if(typeof prop === 'string' && prop.match(/(width|height)/)) {
return size.value[prop];
}
return {
width: size.value.width,
height: size.value.height
};
});
return sizes.length === 1 ? sizes[0] : sizes;
});
};