Chain.prototype.elementAbsoluteCenter = function (selector, callBack) {
    return this._elementAction(selector, function (element, index) {
        return when(element.getAbsoluteCenter(), function (coordinates) {
            if (callBack) {
                return this._scopeCallBack(callBack, [coordinates, element, index]);