Chain.prototype.elementLocation = function (selector, callBack) {
    return this._elementAction(selector, function (element, index) {
        return when(element.getPosition(), function (location) {
            if (callBack) {
                return this._scopeCallBack(callBack, [location, element, index]);