Scroll down not picking up all records

The site I am trying to scrape has a scroll down but the scraper will only collect 20 parts which is the first scroll example

Url: https://www.tecparts.com/motoren-und-getriebeteile/motorenteile/motor/fendt/khd-fl913-h/

Sitemap:
{"_id":"tecparts-motors","startUrl":["https://www.tecparts.com/motoren-und-getriebeteile/"],"selectors":[{"id":"lvl1","type":"SelectorLink","parentSelectors":["_root"],"selector":"div.category a.gwt-Anchor","multiple":true,"delay":0},{"id":"lvl2","type":"SelectorLink","parentSelectors":["lvl1"],"selector":"div.category a.gwt-Anchor","multiple":true,"delay":0},{"id":"lvl3","type":"SelectorLink","parentSelectors":["lvl2"],"selector":"div.subcategories a.gwt-Anchor","multiple":true,"delay":0},{"id":"sku","type":"SelectorText","parentSelectors":["part"],"selector":"div.background div.row:nth-of-type(1) div.col-md-60 span","multiple":false,"regex":"","delay":"2000"},{"id":"price","type":"SelectorText","parentSelectors":["part"],"selector":"div.prices div.price","multiple":false,"regex":"","delay":0},{"id":"delivery","type":"SelectorText","parentSelectors":["part"],"selector":"div.stock","multiple":false,"regex":"","delay":0},{"id":"model_fit","type":"SelectorText","parentSelectors":["part"],"selector":"div.gwt-HTML:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"technical","type":"SelectorText","parentSelectors":["part"],"selector":"div.article_description div.col-md-60:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"image","type":"SelectorImage","parentSelectors":["part"],"selector":"div.thumbnail img.gwt-Image","multiple":false,"delay":0},{"id":"oem_sku","type":"SelectorText","parentSelectors":["part"],"selector":"div.gwt-HTML:nth-of-type(4)","multiple":false,"regex":"","delay":0},{"id":"scroll","type":"SelectorElementScroll","parentSelectors":["lvl3"],"selector":"div.article-item","multiple":true,"delay":""},{"id":"part","type":"SelectorLink","parentSelectors":["scroll"],"selector":"div.head a.gwt-Anchor","multiple":true,"delay":0}]}

Try this one:

{"_id":"tecparts-motors","startUrl":["https://www.tecparts.com/motoren-und-getriebeteile/"],"selectors":[{"id":"lvl1","type":"SelectorLink","parentSelectors":["_root"],"selector":"div.category a.gwt-Anchor","multiple":true,"delay":0},{"id":"lvl2","type":"SelectorLink","parentSelectors":["lvl1"],"selector":"div.category a.gwt-Anchor","multiple":true,"delay":0},{"id":"lvl3","type":"SelectorLink","parentSelectors":["lvl2"],"selector":"div.subcategories a.gwt-Anchor","multiple":true,"delay":0},{"id":"sku","type":"SelectorText","parentSelectors":["part"],"selector":"div.background div.row:nth-of-type(1) div.col-md-60 span","multiple":false,"regex":"","delay":"2000"},{"id":"price","type":"SelectorText","parentSelectors":["part"],"selector":"div.prices div.price","multiple":false,"regex":"","delay":0},{"id":"delivery","type":"SelectorText","parentSelectors":["part"],"selector":"div.stock","multiple":false,"regex":"","delay":0},{"id":"model_fit","type":"SelectorText","parentSelectors":["part"],"selector":"div.gwt-HTML:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"technical","type":"SelectorText","parentSelectors":["part"],"selector":"div.article_description div.col-md-60:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"image","type":"SelectorImage","parentSelectors":["part"],"selector":"div.thumbnail img.gwt-Image","multiple":false,"delay":0},{"id":"oem_sku","type":"SelectorText","parentSelectors":["part"],"selector":"div.gwt-HTML:nth-of-type(4)","multiple":false,"regex":"","delay":0},{"id":"scroll","type":"SelectorElementClick","parentSelectors":["lvl3"],"selector":"div.article-item","multiple":true,"delay":"1000","clickElementSelector":"button.floatright","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueCSSSelector"},{"id":"part","type":"SelectorLink","parentSelectors":["scroll"],"selector":"div.head a.gwt-Anchor","multiple":false,"delay":0}]}

I think that the issue might have been that there is a mixture of clicks and scrolls in the page, so in this case, you need to just use the click as it will serve as a scroll as well.

Thanks i will test it out