How to srape links from accordeon boxes

Hi,

I want to select the links that appear after opening the accordeon boxes on this site: https://www.adac.de/rund-ums-fahrzeug/autokatalog/marken-modelle/citroen/berlingo/2generation-facelift-2/

I want to open each site and collect text from it, e.g. https://www.adac.de/rund-ums-fahrzeug/autokatalog/marken-modelle/citroen/berlingo/2generation-facelift-2/308712/

I have tried it this way, but the links do not open. Can you help me?

{"_id":"berlingo","startUrl":["https://www.adac.de/rund-ums-fahrzeug/autokatalog/marken-modelle/citroen/berlingo/2generation-facelift-2/"],"selectors":[{"id":"Element attribute","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.MOGLV","multiple":true,"delay":0,"clickElementSelector":"div.sc-sPYgB","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"Link","type":"SelectorLink","parentSelectors":["Element attribute"],"selector":".fngpuD a:nth-of-type(1)","multiple":false,"delay":0},{"id":"Text","type":"SelectorText","parentSelectors":["Link"],"selector":"h1","multiple":false,"regex":"","delay":0}]}

This site uses random attribute names like sc-hkbPbT so you'll need better selectors. Try the sitemap below which will expand all the accordians and get the links. To make it click on all links you'll need to add data scrapers under "Get links" (currently it will just get the urls and not click thru):

{"_id":"adac-test","startUrl":["https://www.adac.de/rund-ums-fahrzeug/autokatalog/marken-modelle/citroen/berlingo/2generation-facelift-2/"],"selectors":[{"id":"Open accordians","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"main div[class^='sc']:contains('Fahrzeuge') div[role='button'] ~ div[class^='sc']","multiple":true,"delay":"2100","clickElementSelector":"main div[class^='sc']:contains('Modelle') div[class^='sc'] > div[class^='sc']:contains('Fahrzeuge')","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"Get links","type":"SelectorLink","parentSelectors":["Open accordians"],"selector":"a[data-tracking]","multiple":true,"delay":0}]}

Thank you! That helped a lot