GlobalMouse.prototype.click = function (button) {
  button = button || Mouse.BUTTON_LEFT;
  type('button', button, 'Number');
  return this._requestJSON('POST', '/click', { button: button });
};