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