Show more button - How to use?

I am trying to scrape the ingrediënts from a recipe website. It scrapes fine. But I can't figure out how to scrape the ingrediënts that are under the show more button. I've tried element click, but it doesn't work.... .

Url: https://dagelijksekost.een.be/#type=32

Sitemap:
{"_id":"hoofdgerechten_dagelijkse_kost1","startUrl":["https://dagelijksekost.een.be/#type=32"],"selectors":[{"id":"afzonderlijke items","type":"SelectorLink","parentSelectors":["_root"],"selector":".desktop-search-overlay__results a.large-recipe-teaser","multiple":true,"delay":0},{"id":"Gerecht","type":"SelectorElement","parentSelectors":["afzonderlijke items"],"selector":"div.dish-detail__content","multiple":true,"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","multiple":false,"regex":"","delay":0},{"id":"Ingrediënten","type":"SelectorElement","parentSelectors":["Gerecht"],"selector":"span.ingredient","multiple":true,"delay":0},{"id":"Benodigdheden","type":"SelectorText","parentSelectors":["Ingrediënten"],"selector":"span.ingredient__product","multiple":false,"regex":"","delay":0},{"id":"Hoeveelheden","type":"SelectorText","parentSelectors":["Ingrediënten"],"selector":"span.ingredient__unit","multiple":false,"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}]}

Try the one below. I've set a limit of 50 items for the scraper during testing. You can up the limit by changing the number in the wrapper selector:

.desktop-search-overlay__results li:nth-of-type(-n+50) div.fluid-recipe-teaser

{"_id":"hoofdgerechten-test","startUrl":["https://dagelijksekost.een.be/#type=32"],"selectors":[{"id":"afzonderlijke items","type":"SelectorLink","parentSelectors":["Recipe wrappers"],"selector":"a.large-recipe-teaser","multiple":false,"delay":0},{"id":"Gerecht","type":"SelectorElement","parentSelectors":["afzonderlijke items"],"selector":"div.dish-detail__content","multiple":true,"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","multiple":false,"regex":"","delay":0},{"id":"Ingrediënten","type":"SelectorElement","parentSelectors":["Gerecht"],"selector":"span.ingredient","multiple":true,"delay":0},{"id":"Benodigdheden","type":"SelectorText","parentSelectors":["Ingrediënten"],"selector":"span.ingredient__product","multiple":false,"regex":"","delay":0},{"id":"Hoeveelheden","type":"SelectorText","parentSelectors":["Ingrediënten"],"selector":"span.ingredient__unit","multiple":false,"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},{"id":"Recipe wrappers","type":"SelectorElementClick","parentSelectors":["_root"],"selector":".desktop-search-overlay__results li:nth-of-type(-n+50) div.fluid-recipe-teaser","multiple":true,"delay":"2200","clickElementSelector":".desktop-search-overlay__results button","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"}]}