Trackalytics not getting followers

Hi,
im trying to scrape this website
https://www.trackalytics.com/the-most-followed-instagram-profiles/page/1/
but i can't get followers
here is the sitemap
any idea?
thanks!

{"_id":"trackalytics","startUrl":["https://www.trackalytics.com/the-most-followed-instagram-profiles/page/1/"],"selectors":[{"id":"pagination","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"tr td:nth-of-type(2), tr td:nth-of-type(3)","multiple":true,"delay":0,"clickElementSelector":"p a:nth-of-type(1) button","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"name","type":"SelectorText","parentSelectors":["pagination"],"selector":"span","multiple":false,"regex":"","delay":0},{"id":"followers","type":"SelectorText","parentSelectors":["pagination"],"selector":"tr td:nth-of-type(2), tr td:nth-of-type(3)","multiple":false,"regex":"","delay":0}]}

Hey,

In this case, the pagination has to be done with a Link selector and the element itself has to be selected by an Element selector. In your sitemap, the Click Selector just crashes the sitemap. Here is a working version, hope it helps:

{"_id":"trackalytics","startUrl":["https://www.trackalytics.com/the-most-followed-instagram-profiles/page/1/"],"selectors":[{"id":"element","type":"SelectorElement","parentSelectors":["_root","pagination"],"selector":"tbody tr","multiple":true,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["element"],"selector":"a span","multiple":false,"regex":"","delay":0},{"id":"follower-count-total","type":"SelectorText","parentSelectors":["element"],"selector":"td:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"pagination","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"#paging a[title="Next page"]","multiple":true,"delay":0}]}

Any guess on why this works using element selector and not table selector?