Scrolling with Selenium's Execute Javascript node

Hi @Chris_88,

Maybe you wanna try the focus() function:

Or if it doesn’t work, find the last element using the Find Elements node and run this code in the Execute JavaScript node while checking the last element in the arguments list.
arguments[0].scrollIntoView();

:blush:

5 Likes