floriandiud / instagram-users-scraper

Instagram Scraper. Scrape Instagram followers, following list, and post authors. Download CSV files with Instagram users from followers, following, tag and location pages.
39 stars 7 forks source link

add option to automate scrolling #4

Open makovez opened 2 months ago

makovez commented 2 months ago
setInterval(function() {
    let element = document.querySelector(".x1rife3k");
    if (element) {
        element.scrollBy(0, 1000);  // Scrolls down by 1000px
    } else {
        console.log("Element not found");
    }
}, 5000);  // 5000 milliseconds = 5 seconds

image