https://www.instagram.com/bullymake/ << I would like to scrape the followers no this account. If you click on the number of followers, it opens a pop up and the pop up needs to be scrolled down to scrape. How do I do this?
I understand that it might take a lot of time to scroll until the end. In such case, is it possible to stop at lets say 10k followers?
Instagram is a bit harder and and you will need some advanced tricks. Notably, site uses a separate scroller for the popup window. You will need to use an undocumented scroller parameter to select the right scroll element, as described in a posting by @martins :
The sitemap below will properly scroll the Followers popup and stop at around 133 followers. You can change the number in the scroller selector ul li:nth-of-type(n+4):nth-of-type(even):nth-of-type(-n+133)
The final number of followers is always higher because of the way the scroller shows more followers at the bottom.