Instagram Scroll Down in follower/following

Scroll down inside an instagram follower/following popup

To scroll down inside the instagram follower/following modal you need to add a custom code step with the below code (feature in development to make this no-code) If you edit the ‘50’ number at the top, that is adjusting how many times your automation will scroll down inside the modal

const HOW_MANY_SCROLLS_SHOULD_BE_DONE = 50;

async function scrollSlowly(selector) {
  for (let i = 0; i < HOW_MANY_SCROLLS_SHOULD_BE_DONE; i++) {
    const element = document.querySelector(selector);
    if (element) {
      element.scrollIntoView();
      element.dispatchEvent(new MouseEvent('mouseover', { bubbles: true }));
      element.scrollBy(0, 750);
      await new Promise(resolve => setTimeout(resolve, 1000));
    } else {
      console.log('Element not found.');
      break;
    }
  }
}

await scrollSlowly('._aano');
 
Did this answer your question?
😞
😐
🤩