Chain.prototype.elementDblClick = function (selector, button, callBack) {
    return this._elementAction(selector, function (element, index) {
        return when(element.mouse().doubleClick(), function () {
            if (callBack) {
                return this._scopeCallBack(callBack, [element, index]);