Chain.prototype.elementFrame = function (selector, callBack) {
    return this._elementAction(selector, function (element, index) {
        return when(element.getFrame(), function (frame) {
            if (callBack) {
                return this._scopeCallBack(callBack, [frame, element, index]);