Only the first record is exported for 'multiple' arrays

I have a product page with a list of thumbnails. I've set these to multiple and it returns the multiple thumbnails as expected in preview. But when exporting to the flattened CSV it only exports the first of each of these thumbnails.

I have this in a couple of places in this project, gallery thumbnails and 'highlights' list items. In both cases only the first is exported.

Any idea how to handle nested lists like this?

{"_id":"properties","startUrl":["https://www.signature.co.nz/house-land","https://www.signature.co.nz/house-land?page=2","https://www.signature.co.nz/house-land?page=3"],"selectors":[{"delay":0,"id":"links","multiple":true,"parentSelectors":["_root"],"selector":".col-md-4 a","type":"SelectorLink"},{"delay":0,"id":"headline","multiple":false,"parentSelectors":["links"],"regex":"","selector":"div.infopanel:nth-of-type(2) h2","type":"SelectorText"},{"delay":0,"id":"beds","multiple":false,"parentSelectors":["links"],"regex":"","selector":"td:nth-of-type(1) sup","type":"SelectorText"},{"delay":0,"id":"bathrroms","multiple":false,"parentSelectors":["links"],"regex":"","selector":"td:nth-of-type(2) sup","type":"SelectorText"},{"delay":0,"id":"receptions","multiple":false,"parentSelectors":["links"],"regex":"","selector":"td:nth-of-type(3) sup","type":"SelectorText"},{"delay":0,"id":"parking","multiple":false,"parentSelectors":["links"],"regex":"","selector":"td:nth-of-type(4) sup","type":"SelectorText"},{"delay":0,"id":"price","multiple":false,"parentSelectors":["links"],"regex":"","selector":".col-md-8 p:nth-of-type(1) span","type":"SelectorText"},{"delay":0,"id":"size","multiple":false,"parentSelectors":["links"],"regex":"","selector":"p[_ngcontent-serverapp-c5]:nth-of-type(3)","type":"SelectorText"},{"delay":0,"extractAttribute":"style","id":"coverimage","multiple":false,"parentSelectors":["links"],"selector":".ngx-gallery-active","type":"SelectorElementAttribute"},{"delay":0,"id":"summary","multiple":false,"parentSelectors":["links"],"regex":"","selector":"#description div p[_ngcontent-serverapp-c27]","type":"SelectorHTML"},{"delay":0,"extractAttribute":"style","id":"gallery","multiple":true,"parentSelectors":["links"],"selector":".ngx-gallery-thumbnail","type":"SelectorElementAttribute"},{"delay":0,"id":"highlights","multiple":true,"parentSelectors":["links"],"regex":"","selector":".card-body li","type":"SelectorText"},{"delay":0,"extractAttribute":"style","id":"floorplan","multiple":false,"parentSelectors":["links"],"selector":".infopanel .col-md-12 p .ngx-gallery-active","type":"SelectorElementAttribute"},{"delay":0,"id":"address","multiple":false,"parentSelectors":["links"],"regex":"","selector":".col-md-12.infopanel p[_ngcontent-serverapp-c5]","type":"SelectorText"},{"delay":0,"id":"showhomes","multiple":true,"parentSelectors":["links"],"regex":"","selector":"div.active:nth-of-type(n+4) h5","type":"SelectorText"},{"delay":0,"extractAttribute":"href","id":"consultant","multiple":false,"parentSelectors":["links"],"selector":"a.greenlinksmall:nth-of-type(1)","type":"SelectorElementAttribute"},{"delay":0,"extractAttribute":"href","id":"franchise","multiple":false,"parentSelectors":["links"],"selector":"a.greenlinksmall:nth-of-type(4)","type":"SelectorElementAttribute"},{"delay":0,"id":"plan","multiple":false,"parentSelectors":["links"],"regex":"","selector":"h2.float-left","type":"SelectorText"}]}

Hello @codycustard

It seems that this happens because you have checked the 'Multiple' option. You should replace all of the 'Element Attribute' selectors(with the 'Multiple' option checked) using the 'Grouped' type instead.

Example:

{"_id":"properties","startUrl":["https://www.signature.co.nz/house-land/stunning-large-aotea-family-home"],"selectors":[{"delay":0,"id":"property-page","multiple":true,"parentSelectors":["_root"],"selector":"html","type":"SelectorElement"},{"delay":0,"id":"headline","multiple":false,"parentSelectors":["property-page"],"regex":"","selector":"div.infopanel:nth-of-type(2) h2","type":"SelectorText"},{"delay":0,"id":"price","multiple":false,"parentSelectors":["property-page"],"regex":"","selector":".col-md-8 p:nth-of-type(1) span","type":"SelectorText"},{"delay":0,"id":"size","multiple":false,"parentSelectors":["property-page"],"regex":"","selector":"p[_ngcontent-serverapp-c5]:nth-of-type(3)","type":"SelectorText"},{"delay":0,"extractAttribute":"style","id":"coverimage","parentSelectors":["property-page"],"selector":".ngx-gallery-active","type":"SelectorGroup"},{"delay":0,"extractAttribute":"style","id":"gallery","parentSelectors":["property-page"],"selector":".ngx-gallery-thumbnail","type":"SelectorGroup"}]}