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