Scroll down then next pagination

Hello!

I am a new user of Web Scraper and trying to get data from JD (a Chinese e-commerce platform), but don't understand how to scroll down for each pagination, then get data like price for all pages. This Sitemap can only get the first page's price.

Thanks in advance.

Url: https://list.jd.com/list.html?cat=6728%2C6742%2C11849&ev=exbrand_美孚(Mobil)^&cid3=11849

Sitemap:
{"id":"a11","startUrl":["https://list.jd.com/list.html?cat=6728%2C6742%2C11849&ev=exbrand%E7%BE%8E%E5%AD%9A%EF%BC%88Mobil%EF%BC%89%5E&cid3=11849"],"selectors":[{"id":"sdown","type":"SelectorElementScroll","parentSelectors":["_root","next"],"selector":"div.gl-i-wrap","multiple":true,"delay":2000},{"id":"price","type":"SelectorText","parentSelectors":["sdown"],"selector":"div.p-price","multiple":false,"regex":"","delay":0},{"id":"next","type":"SelectorElementClick","parentSelectors":["_root","next"],"selector":"a.pn-next","multiple":true,"delay":2000,"clickElementSelector":"a.pn-next","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"}]}

Try this with Page load delay: 6000
I have changed the search string for testing, modify as needed:

{"_id":"forum-jd-website","startUrl":["https://list.jd.com/list.html?cat=6728%2C6742%2C11849&ev=exbrand_%E7%BE%8E%E5%AD%9A%EF%BC%88Mobil%EF%BC%89%5E14031_85260%5E&cid3=11849"],"selectors":[{"id":"Results wrapper","type":"SelectorElement","parentSelectors":["_root","Click next"],"selector":"div > ul.gl-warp","multiple":false},{"id":"Separate scroller","type":"SelectorElementScroll","parentSelectors":["Results wrapper"],"selector":"li[data-sku]:nth-of-type(3n+3)","multiple":true,"delay":"2500"},{"id":"Item wrappers","type":"SelectorElement","parentSelectors":["Results wrapper"],"selector":"li[data-sku]","multiple":true},{"id":"Title","type":"SelectorText","parentSelectors":["Item wrappers"],"selector":"a em","multiple":false,"regex":""},{"id":"Price","type":"SelectorText","parentSelectors":["Item wrappers"],"selector":"div.p-price strong[data-done]","multiple":false,"regex":""},{"id":"Price plus","type":"SelectorText","parentSelectors":["Item wrappers"],"selector":"div.p-price span[class^='price-plus']","multiple":false,"regex":""},{"id":"Click next","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.ml-wrap","multiple":false,"delay":"6000","clickElementSelector":"a.fp-next","clickType":"clickMore","discardInitialElements":"discard-when-click-element-exists","clickElementUniquenessType":"uniqueHTMLText"}]}