Problem scraping JS Site

Hey,
I'm trying to scrape a simple JS site, but for some reason I'm missing something.
It's a three stages simple matter.

  1. click category
  2. click the product for full details = JS popup
  3. scrape several text fields.

I'm giving the scraper 5300 ms.
While previewing, I seem to get the data, but, when executing, I get nothing.

I'd really appreciate some pointers.

Note: the site is in Hebrew, but that shouldn't be a problem for you to understand the procedure.

Url: https://www.rami-levy.co.il/

Sitemap:
{"_id":"rami-levy","startUrl":["https://www.rami-levy.co.il/he/shop"],"selectors":[{"id":"Category","type":"SelectorLink","parentSelectors":["_root"],"selector":"li:nth-of-type(n+2) a.li-menu-title","multiple":true,"delay":0},{"id":"Product popup","type":"SelectorPopupLink","parentSelectors":["Category"],"selector":"div.item-card, .col-12.bg-white [data-v-58445f16] > div > div","multiple":true,"delay":0},{"id":"Product Name","type":"SelectorText","parentSelectors":["Product popup"],"selector":"h2.h2","multiple":false,"regex":"","delay":0},{"id":"price","type":"SelectorText","parentSelectors":["Product popup"],"selector":".xl-text span.position-relative","multiple":false,"regex":"","delay":0},{"id":"ingredients ","type":"SelectorText","parentSelectors":["Product popup"],"selector":".my-4 div","multiple":false,"regex":"","delay":0},{"id":"SKU","type":"SelectorText","parentSelectors":["Product popup"],"selector":".m-text .py-2 div","multiple":false,"regex":"","delay":0},{"id":"storage directions","type":"SelectorText","parentSelectors":["Product popup"],"selector":"div.row:nth-of-type(1) div.pl-md-4","multiple":false,"regex":"","delay":0},{"id":"country","type":"SelectorText","parentSelectors":["Product popup"],"selector":"[data-original-title='ישראל'] span.mb-2","multiple":false,"regex":"","delay":0},{"id":"brand","type":"SelectorText","parentSelectors":["Product popup"],"selector":"[data-original-title='טרה'] span.mb-2","multiple":false,"regex":"","delay":0},{"id":"unit size","type":"SelectorText","parentSelectors":["Product popup"],"selector":"[data-original-title='2000 מל'] span.mb-2","multiple":false,"regex":"","delay":0},{"id":"allergan","type":"SelectorText","parentSelectors":["Product popup"],"selector":"div.row:nth-of-type(3) .col-md-10 div","multiple":false,"regex":"","delay":0},{"id":"image","type":"SelectorImage","parentSelectors":["Product popup"],"selector":".normal-image img","multiple":false,"delay":0}]}

Thanks in advance

This site uses plain HTML links (a href) so the the Link selector can be used here. It does need a scroller for some pages though. The example below will scrape the kids' products category. Modify as needed. I used Page load delay: 5500

Sitemap:
{"_id":"forum-rami-levy","startUrl":["https://plus.rami-levy.co.il/146996-%D7%A2%D7%95%D7%9C%D7%9D-%D7%94%D7%99%D7%9C%D7%93"],"selectors":[{"id":"Category","type":"SelectorText","parentSelectors":["_root"],"selector":"div[id^='layout'] h1","multiple":false,"regex":"","delay":0},{"id":"Scroller","type":"SelectorElementScroll","parentSelectors":["_root"],"selector":"div[class^='grid'] div[class^='wrap']","multiple":true,"delay":"2500"},{"id":"Click link","type":"SelectorLink","parentSelectors":["Scroller"],"selector":"a","multiple":false,"delay":0},{"id":"Product name","type":"SelectorText","parentSelectors":["Click link"],"selector":"div[id='item_current_title'] h1","multiple":false,"regex":"","delay":0},{"id":"Price","type":"SelectorText","parentSelectors":["Click link"],"selector":"div#item_show_price span.price_value","multiple":false,"regex":"","delay":0},{"id":"Slash price","type":"SelectorText","parentSelectors":["Click link"],"selector":"div[class^='wrap_price'] span.origin_price_number","multiple":false,"regex":"","delay":0}]}