Scraping through subcategories won't work

Hi there!

I've been getting my way around with WS. I want to scrape this website: https://www.socialdeal.be/
For each selected city (see image below) i want to scrape the offering (product name, price etc). And each city has a few subcategories (e.g. popular, uitjes), which results in additional product offering that needs to be scraped.

I succeeded to do a basic scrape for each city, only without clicking through the subcategory menu.
This is where I would like to ask for some help.

how can the script automatically click through each subcategory and scrape content and then proceed to next subcategory. This for each city of course. Please find below my code below.

Thanks in advance!
Frank



{"_id":"socialdeal","startUrl":["https://www.socialdeal.nl/"],"selectors":[{"id":"Product","type":"SelectorElement","parentSelectors":["categorie"],"selector":"div.cat-0:nth-of-type(n+4)","multiple":true,"delay":0},{"id":"Titel","type":"SelectorText","parentSelectors":["Product"],"selector":"h4","multiple":false,"regex":"","delay":0},{"id":"verkooopvolume","type":"SelectorText","parentSelectors":["Product"],"selector":"div.social-deal-sold","multiple":false,"regex":"","delay":0},{"id":"dealprijs","type":"SelectorText","parentSelectors":["Product"],"selector":"div.social-deal-new-price","multiple":false,"regex":"","delay":0},{"id":"regulierprijs","type":"SelectorText","parentSelectors":["Product"],"selector":"div.social-deal-old-price","multiple":false,"regex":"","delay":0},{"id":"Stad","type":"SelectorLink","parentSelectors":["_root"],"selector":".menu-deal-city-list a","multiple":true,"delay":0},{"id":"categorie","type":"SelectorLink","parentSelectors":["Stad"],"selector":"a.filter","multiple":true,"delay":0}]}

update:
i managed to have it click through the subcategories, but still doesn't work properly:
script doesn't repeat scraping for each category