Behance User Data: Infinte Scrolling

Describe the problem.

i tried scrapping by two ways either it keeps scrolling or it duplicates data and starts from first entry of data in an infinite scrolling page can someone help ?

i want to extract used database from behance with their name, description and details.

https://www.behance.net/search?content=users&country=IN

Sitemap:

{"_id":"behance-india-users","startUrl":["https://www.behance.net/search?content=users&country=IN"],"selectors":[{"id":"profile-name","type":"SelectorElement","parentSelectors":["_root"],"selector":"a.ProfileRow-profileLink-2Iv","multiple":true,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["profile-name"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"Intro","type":"SelectorText","parentSelectors":["profile-name"],"selector":"p.Profile-line-2Cz","multiple":true,"regex":"","delay":0},{"id":"Location","type":"SelectorText","parentSelectors":["profile-name"],"selector":".Profile-userLocation-bxZ a","multiple":false,"regex":"","delay":0},{"id":"desc 1","type":"SelectorText","parentSelectors":["profile-name"],"selector":"p.UserInfo-bioHeader-fYW, div.UserInfo-bio-YNh","multiple":false,"regex":"","delay":0},{"id":"desc2","type":"SelectorText","parentSelectors":["profile-name"],"selector":"div.UserInfo-bio-YNh","multiple":false,"regex":"","delay":0},{"id":"downdown","type":"SelectorElementScroll","parentSelectors":["profile-name"],"selector":"[xmlns] circle","multiple":false,"delay":"2000"}]}

Try this, it will stop at row 30. You can increase the number by changing it in the scroller selector,
ContentList-listItem']:nth-of-type(-n+30) > div

However, WS is known to crash when there are too many rows for scroller (around 1500 on my PC).

{"_id":"behance-india-users-v2","startUrl":["https://www.behance.net/search?content=users&country=IN"],"selectors":[{"id":"scroller n profile wrappers","type":"SelectorElementScroll","parentSelectors":["_root"],"selector":"li[class^='ContentList-listItem']:nth-of-type(-n+30) > div","multiple":true,"delay":"2500"},{"id":"Name","type":"SelectorText","parentSelectors":["scroller n profile wrappers"],"selector":"a[class^='ProfileRow-profileLink']","multiple":false,"regex":"","delay":0},{"id":"Location","type":"SelectorText","parentSelectors":["scroller n profile wrappers"],"selector":"p[class^='ProfileRow-location']","multiple":false,"regex":"","delay":0},{"id":"desc 1","type":"SelectorText","parentSelectors":["scroller n profile wrappers"],"selector":"ul[class^='ProfileRow-creativeFields']","multiple":false,"regex":"","delay":0}]}