<script>
var element = document.getElementById($parameters.Classname);
element.scrollIntoView();
element.scrollIntoView(false);
element.scrollIntoView({block: "end"});
element.scrollIntoView({behavior: "smooth", block: "end", inline: "nearest"});
</script>
// from: https://developer.mozilla.org/de/docs/Web/API/Element/scrollIntoView //
I used the ID of the Page-Title "b1-Title" as value of the inputvariable "Classname".
For value input of "classname" you can use any "name" (=id) of any div-container on the website.