Infitine scroll down issue to extract all the products

I am having difficulty to collect the data with the following website: "https://www.sephora.de/shop/haare/haarpflege-c299914/" I tried to collect from the product page different information but the items from the sub-categories are loading while scrolling down.

When I have extracted some data, I am always missing some items. Can someone help me ?

The sitemap is from a sub-category just to be sure that everything is working
Sitemap:
{"_id":"test","startUrl":["https://www.sephora.de/shop/haare/haarpflege/leave-in-behandlung-c406/?srule=rank1"],"selectors":[{"id":"prod","type":"SelectorLink","parentSelectors":["_root"],"selector":".grid-tile .product-image a","multiple":true,"delay":0},{"id":"brand","type":"SelectorText","parentSelectors":["prod"],"selector":"span[itemprop='brand']","multiple":false,"regex":"","delay":0},{"id":"price","type":"SelectorText","parentSelectors":["prod"],"selector":".price-block-right .price-sales span","multiple":false,"regex":"","delay":0}]}

On this site, it is possible to separate the scroller and the data scrapers. The example below will scroll down to item 90 and yield about 100 items (actual number will vary according to your screen size). If you want it to scroll more, just increase the number at the end of the scroll selector: nth-of-type(-3n+90)

Sitemap:

{"_id":"forum-sephora","startUrl":["https://www.sephora.de/shop/haare/haarpflege-c299914/"],"selectors":[{"id":"Separate scroller","type":"SelectorElementScroll","parentSelectors":["_root"],"selector":"ul > li.grid-tile:nth-of-type(-3n+90)","multiple":true,"delay":"4000"},{"id":"Wrappers","type":"SelectorElement","parentSelectors":["_root"],"selector":"ul > li.grid-tile","multiple":true},{"id":"Brand","type":"SelectorText","parentSelectors":["Wrappers"],"selector":"span.product-brand","multiple":false,"regex":""},{"id":"Product","type":"SelectorText","parentSelectors":["Wrappers"],"selector":"span.title-line","multiple":false,"regex":""},{"id":"Details link","type":"SelectorLink","parentSelectors":["Wrappers"],"selector":"a.product-tile-link","multiple":false}]}