How to auto-click 'Load more' button continuously

preview_player
Показать описание
You have a website where to get to older content you have to click a "load more" or "show more" button continuously? Here's how you can automate it in Google Chrome!

1. Right click the button you want to click multiple times
2. Select "Inspect"
3. Add an "id" attribute to the item and set the value of it to "load-more"
4. Switch to the Console tab
5. Paste the following script and then hit Enter:

```
setInterval(function(){
}, 1000);
```

This script will find the element of the page which has the ID "load-more" and then it'll click that once every second.
Рекомендации по теме
Комментарии
Автор

How can the scritp be edited so whenever the button appears it is just pressed once

xtrajazz
Автор

amazon ka add to cart button pe work krega

atulraaazzz
Автор

hey bro how to stop auto click in after 100 times click?

MDAkash-hydu
Автор

Is there a way to load all content onto one page? I'm on a page where it only loads the content page by page and only fits 100 items on a page. I'm trying to get an infinite scroll on this website.

ConfidentFitness
Автор

Will there be any issues with this for the website? Will they know and will their servers be overwhelmed?

MM-uvvb