[4 / 1 / 1]
Quoted By: >>1471615
Hey /wsr/. Whenever the Steam Next Fest happens, I'm the kind of person who wants to see all of the games on the page, but it's annoying that I have to keep clicking the "Show more" button. It would be nice if everything could be loaded and I just have to scroll. Does anyone know some code I can input into the console that keeps clicking the button? I had tried:
var button=document.getElementById("load-more");
setInterval(function(){
button.click();
}, 1000);
After setting an id to the button, but that didn't work. Should I use a webpage scraper? Thank you for any help.
var button=document.getElementById("load-more");
setInterval(function(){
button.click();
}, 1000);
After setting an id to the button, but that didn't work. Should I use a webpage scraper? Thank you for any help.
