How to - Element Click - to click all products

Hello All,

I would like to ask for help or suggestions whether it is possible with this tool or not.

Problem is: I would like to scrape product name, retailer chain and price per retailer from this page:
arfigyelo
Here you can see different products that shows price per retailer chains. I would like to click to each product (since there is no link in the HTML) and get the product name, and price per retailer chains where it is distributed. I paste my sitemap, after one click of the product it returns and gives only the first product data.

Thank you in advance!

Url: Árfigyelő

Sitemap:
{"_id":"arfigyelo","startUrl":["https://arfigyelo.gvh.hu/k/haztartas/haztartasi_papiraru_csomagolo?order=unitAmount_asc"],"selectors":[{"id":"Pagination","paginationType":"auto","parentSelectors":["_root","Pagination"],"selector":"button.btn-lg","type":"SelectorPagination"},{"id":"ProductName","multipleType":"singleColumnWithSeparator","parentSelectors":["ProductClick"],"regex":"","selector":"h3","type":"SelectorText"},{"id":"Chain","multipleType":"singleColumnWithSeparator","parentSelectors":["ProductClick"],"regex":"","selector":"div.chain-name","type":"SelectorText"},{"id":"Price","multipleType":"singleColumnWithSeparator","parentSelectors":["ProductClick"],"regex":"","selector":".d-inline-flex div:nth-of-type(2) span","type":"SelectorText"},{"clickActionType":"real","clickElementSelector":"div.card-body","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickMore","delay":2000,"discardInitialElements":"do-not-discard","id":"ProductClick","multiple":true,"parentSelectors":["Pagination"],"selector":"div#layout-content","type":"SelectorElementClick"}]}

Hi,

You can try this setup, but, unfortunately, it will click through only the first page of results, as clicking on a product and going back resets the product list.

{"_id":"arfigyelo","startUrl":["https://arfigyelo.gvh.hu/k/haztartas/haztartasi_papiraru_csomagolo?order=unitAmount_asc"],"selectors":[{"clickActionType":"real","clickElementSelector":"div.card-title","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"discard-when-click-element-exists","id":"click-product","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"id":"title","multiple":false,"multipleType":"singleColumn","parentSelectors":["click-product"],"regex":"","selector":"h3","type":"SelectorText"},{"elementLimit":0,"id":"stores-wrapper","multiple":true,"parentSelectors":["click-product"],"scroll":false,"selector":"div.mt-3.card","type":"SelectorElement"},{"clickActionType":"real","clickElementSelector":"li:nth-of-type(3) a","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":1000,"discardInitialElements":"do-not-discard","id":"back","multiple":true,"parentSelectors":["click-product"],"selector":"_parent_","type":"SelectorElementClick"},{"id":"store","multiple":false,"multipleType":"singleColumn","parentSelectors":["stores-wrapper"],"regex":"","selector":"div.chain-name","type":"SelectorText"},{"id":"price","multiple":false,"multipleType":"singleColumn","parentSelectors":["stores-wrapper"],"regex":"","selector":"span.amount","type":"SelectorText"}]}