ActiveWindow.prototype.scrollBy = function (x, y) {
  return this.execute(function (x, y) {
    window.scrollBy(x || 0, y || 0);
  }, [x, y]);
};