Chain.prototype.elementTap = function (selector, callBack) {
    return this._elementAction(selector, function (element, index) {
        return when(element.touch().tap(), function () {
            if (callBack) {
                return this._scopeCallBack(callBack, [element, index]);