Chain.prototype.elementAttribute = function (selector, attribute, callBack) {
    return this._elementAction(selector, function (element, index) {
        return when(element.getAttribute(attribute), function (value) {
            if (callBack) {
                return this._scopeCallBack(callBack, [value, element, index]);