Element click doesn't work properly

I want to scrape website https://www.ifep.ro/justice/lawyers/lawyerspanel.aspx

I need to get from each page text wrap - containing all data. The problem is that it doesn't work. When I try to get the text wrap from only one page it works. When I check element click it works - it click each page. But when both are working there is no data scraped.

I am using this sitemap:

{"_id":"av1","startUrl":["https://www.ifep.ro/justice/lawyers/lawyerspanel.aspx"],"selectors":[{"id":"linkclick","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.col-md-12","multiple":true,"delay":"3000","clickElementSelector":"li:nth-of-type(n+4) a","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"text","type":"SelectorText","parentSelectors":["linkclick"],"selector":"parent","multiple":false,"regex":"","delay":0}]}

I am not sure what I am doing wrong.

From what I can see, you're using "unique text" instead of "unique CSS" on your element click pagination.

Try this

Keep in mind it will scroll through every single page before returning any data.. Just wait for it to end.

{"_id":"av1","startUrl":["https://www.ifep.ro/justice/lawyers/lawyerspanel.aspx"],"selectors":[{"id":"linkclick","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.col-md-12","multiple":true,"delay":"3000","clickElementSelector":"i.fa-chevron-circle-right","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueCSSSelector"},{"id":"Role","type":"SelectorText","parentSelectors":["linkclick"],"selector":"parent","multiple":false,"regex":"","delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["linkclick"],"selector":"font font font","multiple":false,"regex":"","delay":0},{"id":"","type":"SelectorText","parentSelectors":["linkclick"],"selector":".padding-right-md font font","multiple":false,"regex":"","delay":0}]}