I would like to automate the scrapping of a shoe merchant in order to obtain the available sizes of the models that I have selected. I use Google Sheet “search rows”, in which are the URLs of my target products, then http “make a request” which visits the web pages in the spreadsheet, then Text parser “match pattern (advanced)” with this pattern: “label”:“(3[0-9]|4[0-9]|50)”,“products”:[“[^”]+"],“active”:1 , the results are correct :
but I would like them all to display in the same box at the same time, currently when starting the automation, the values are displayed but one by one, at the end of the process it only one size left in the box :
here are the parameters, do not hesitate to tell me if there are things to modify to achieve the results I want, Should we add a module, if so which one? and with what parameters?
thank you in advance
Every result (item/record) from iterator/list/search/match modules will output a bundle. This can result in multiple bundles, which then trigger multiple operations in future modules (one operation per bundle). To “combine” multiple bundles into a single variable, you’ll need to use an aggregator of some sort.
Aggregators are modules that accumulate multiple bundles into one single bundle. An example of a commonly-used aggregator module is the Array aggregator module. The next popular aggregator is the Text Aggregator which is very flexible and can apply to many use-cases like building of JSON, CSV, HTML.
There are other types of aggregator modules, click the below links to find out more: