Scraping ingrediënts of recipes from a recipe website

I am trying to scrape ingrediënts of several recipes from a recipe website. I am using google chrome webscraper extension.

This is the sitemap I created: {"_id":"klassiekers_dagelijkse_kost1","startUrl":["https://dagelijksekost.een.be/#category=98&kitchen=44&type=32"],"selectors":[{"id":"alle items","type":"SelectorLink","parentSelectors":["_root"],"selector":".desktop-search-overlay__results a.large-recipe-teaser","multiple":true,"delay":0},{"id":"afzonderlijke items","type":"SelectorLink","parentSelectors":["alle items"],"selector":".desktop-search-overlay__results li:nth-of-type(1) a.large-recipe-teaser","multiple":true,"delay":0},{"id":"Gerecht","type":"SelectorLink","parentSelectors":["afzonderlijke items"],"selector":"div.dish-detail__content","multiple":false,"delay":0},{"id":"image","type":"SelectorImage","parentSelectors":["Gerecht"],"selector":".desktop-search-overlay__results li:nth-of-type(1) div.large-recipe-teaser__image","multiple":false,"delay":0},{"id":"Naam","type":"SelectorText","parentSelectors":["Gerecht"],"selector":"h1.dish-metadata__title","multiple":false,"regex":"","delay":0},{"id":"Ingrediënten","type":"SelectorLink","parentSelectors":["Gerecht"],"selector":"div.dish-ingredients border-block","multiple":true,"delay":0},{"id":"ingrediënten blok","type":"SelectorLink","parentSelectors":["Ingrediënten"],"selector":"ul.ingredients--","multiple":true,"delay":0},{"id":"Benodigdheden","type":"SelectorText","parentSelectors":["ingrediënten blok"],"selector":"span.ingredient__product","multiple":true,"regex":"","delay":0},{"id":"Hoeveelheden","type":"SelectorText","parentSelectors":["ingrediënten blok"],"selector":"span.ingredient__unit","multiple":true,"regex":"","delay":0},{"id":"Bereidingstijd","type":"SelectorText","parentSelectors":["Gerecht"],"selector":"div.dish-metadata__info-line:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"categorie","type":"SelectorText","parentSelectors":["Gerecht"],"selector":"div.dish-metadata__info-line[analyticsid]","multiple":false,"regex":"","delay":0}]}

When I start scraping I can see it is running through the several recipes. However I keep getting the message no data extracted. Can someone tell me what I am doing wrong?

Your "Gerecht" link selector has not been selected whilst using the Link selector and have been changed after the selection has been done, resulting in it not being a valid Link selector. If you re-select it, you should be able to get a correct output.

for some reason I can't choose it automatically using the selector. So I added it manually using 'inspect element'.