I have a web page that loads data on scroll,
How do I get it to load all the data?
This code not work on action "Run Javascript function on a web page":
function ExecuteScript()
{
function autoScrolling()
window.scrollTo(0,document.body.scrollHeight);
}
setInterval(autoScrolling,50);
}