How to scroll webpage send hot is not work pgdn

Hi
I need to scroll web page by using mouse I can able to scroll down but in activity I try to use send hot key pgdn activity I was working before but I now its not working for me can any alternate way to scroll down of web page

Hi @airwaveexporter

You can click the page down arrow button if it has.

find an element at the bottom of the page using the developer tools console

e.g. if your element has id=“topic-bottom” you can write this code to a text file

function(e){
document.getElementById("topic-bottom").scrollIntoView();
}

then use inject js activity to call this text file
image