The "LOAD MORE ITEMS" selector only works once after several selector scrolls OK

Web Scraper version: 0.3.7
Chrome version: Version 66.0.3359.139 (Build officiel) (64 bits)
OS: Windows 10

Hello,

I spent unsuccessful hours searching for the right HTML code for the "Load more items" button.

The first step (Scroll item down) is correctly executed and I scraped 12 * 5 scroll = 60 bottles.

But the second step is partially executed: only 1 click is executed with 12 additional bottles.

So I scraped 72 object and the process stops without any reason.

I do not understand why the "Load more items" is clicked only once.
It should continue to click to scrap more items.
I should normally get 122 items at the end with this selection.

This is my sitemaps:

[https://theliquorstore.com/red-wine/cabernet-sauvignon.html]
(https://theliquorstore.com/red-wine/cabernet-sauvignon.html)

{"_id":"test_wine_scroll_click","startUrl":["https://theliquorstore.com/red-wine/cabernet-sauvignon.html"],"selectors":[{"id":"item_scroll_down","type":"SelectorElementScroll","selector":"li.item","parentSelectors":["_root"],"multiple":true,"delay":"2000"},{"id":"item_clic","type":"SelectorElementClick","selector":"li.item","parentSelectors":["_root"],"multiple":true,"delay":"4000","clickElementSelector":"div.ias-trigger a","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueCSSSelector"},{"id":"link","type":"SelectorLink","selector":"h2.product-name a","parentSelectors":["item_clic"],"multiple":false,"delay":""},{"id":"title","type":"SelectorText","selector":"h1.style-b","parentSelectors":["link"],"multiple":false,"regex":"","delay":0},{"id":"price","type":"SelectorText","selector":"div.price-box","parentSelectors":["link"],"multiple":false,"regex":"","delay":0},{"id":"location","type":"SelectorText","selector":"div.location-info","parentSelectors":["link"],"multiple":false,"regex":"","delay":0}]}

Unfortunately you won't be able to scrape more items because site renders "Load more" button only when you scroll down to it. You can try to chain these 2 selectors like scroll->click->scroll->click and scrape the records with the last selector but it is inconvenient and won't work on other pages where you have to click and scroll more than you have set up.

thanks my friend, I will test