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.