Hi developers,
I wonder if KR have command to Scroll to position/element?
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