Scroll to position/element in KR

Hi developers,
I wonder if KR have command to Scroll to position/element?

@mapple.tran

Hi, you can use runScript and execute window.scrollBy(0, 100) to scroll down 100px. or use runScript with this: document.querySelector("#your-css-locator"). scrollIntoView ()

thanks @ThanhTo