There are two ways to do it.
Step 1: Open up the demo in the Editor.
Step 2: Locate the element you want to autoscroll to. Right-click on it and select Inspect.
Step 3: If the element has an id="[VALUE]" attribute (where [VALUE] could be anything), note it down. If it doesn't, right-click the element in Inspector, and select Edit as HTML, then add the id="[VALUE]" attribute. Replace [VALUE] with any identifier - "scroll", "anchor" - the choice is yours.
Step 4: Add the following HTML/JavaScript code below the element:
<script>
document.querySelector('#[YOUR-ID]').scrollIntoView({block: "center"});
</script>
Replace [YOUR-ID] with the ID you assigned to the element.
Note: you can control where the element will be after the scroll is complete by modifying the "center" value of the "block" property.
For more information, visit the documentation for the scrollIntoView method. https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView
Step 5:Click away to confirm the changes
Step 6: Save the screen.