Scraping with scroll and link click

Hey,

I'm trying to scrape the data from this website : https://fic.app.swapcard.com/widget/event/fic-2022/exhibitors/RXZlbnRWaWV3XzI5NjEzMQ==?lng=fr-FR
with the name of the company its partnership category and its business description. I thought about first scrolling to the end of the page to show all entries. Then use a link selector to select child elements from each company (title, partnership and business description). However when I do that I get so many "nulls" in my data output. Can someone tell me what I'm doing wrong please ? Thank you for your help

Sitemap:
{"_id":"forum-fic","startUrl":["https://fic.app.swapcard.com/widget/event/fic-2022/exhibitors/RXZlbnRWaWV3XzI5NjEzMQ==?lng=fr-FR"],"selectors":[{"delay":3000,"id":"link","multiple":true,"parentSelectors":["_root"],"selector":"div.sc-xrxods-11","type":"SelectorElementScroll"},{"delay":0,"id":"linkclick","multiple":true,"parentSelectors":["_root"],"selector":"a","type":"SelectorLink"},{"delay":0,"id":"Entreprise","multiple":false,"parentSelectors":["linkclick"],"regex":"","selector":"h1","type":"SelectorText"},{"delay":0,"id":"Partenaire","multiple":false,"parentSelectors":["linkclick"],"regex":"","selector":"h2.sc-1wv3da6-8","type":"SelectorText"},{"delay":0,"id":"Business description","multiple":false,"parentSelectors":["linkclick"],"regex":"","selector":"div.sc-1k0xztj-3","type":"SelectorText"}]}

@Kozeo Hi, you should set the 'Link' selector as a child for the 'Element scroll' selector, otherwise it might target some completely unrelated links.

Example:

{"_id":"forum-fic","startUrl":["https://fic.app.swapcard.com/widget/event/fic-2022/exhibitors/RXZlbnRWaWV3XzI5NjEzMQ==?lng=fr-FR"],"selectors":[{"delay":3000,"id":"scroll","multiple":true,"parentSelectors":["_root"],"selector":"div.infinite-scroll-component a[href*=\"/widget/event/\"]","type":"SelectorElementScroll"},{"delay":0,"id":"link","multiple":true,"parentSelectors":["scroll"],"selector":"_parent_","type":"SelectorLink"},{"delay":0,"id":"Entreprise","multiple":false,"parentSelectors":["link"],"regex":"","selector":"h1","type":"SelectorText"},{"delay":0,"id":"Partenaire","multiple":false,"parentSelectors":["link"],"regex":"","selector":"h1+h2","type":"SelectorText"},{"delay":0,"extractAttribute":"","id":"Business description","parentSelectors":["link"],"selector":"p, p + ul li","type":"SelectorGroup"}]}