Right, let me show you what I got, basically, I want to create some sort of catalog based on my purchases from Amazon, this is the script
{"_id":"amazonimport","startUrl":["https://www.amazon.com.mx/gp/your-account/order-history/ref=ppx_yo_dt_b_pagination_1_2?ie=UTF8&orderFilter=months-3&search=&startIndex=[0-45]0"],"selectors":[{"id":"detalles","type":"SelectorLink","parentSelectors":["_root"],"selector":".a-row .a-vertical a:nth-of-type(1)","multiple":true,"delay":0},{"id":"tittle","type":"SelectorLink","parentSelectors":["detalles"],"selector":".a-fixed-left-grid-col .a-row > a","multiple":true,"delay":0},{"id":"cost","type":"SelectorText","parentSelectors":["detalles"],"selector":"span.a-size-small.a-color-price","multiple":true,"regex":"","delay":0},{"id":"count","type":"SelectorText","parentSelectors":["detalles"],"selector":"span.item-view-qty","multiple":true,"regex":"","delay":0},{"id":"order","type":"SelectorText","parentSelectors":["detalles"],"selector":"bdi","multiple":false,"regex":"","delay":0},{"id":"currentprice","type":"SelectorText","parentSelectors":["tittle"],"selector":"span#price_inside_buybox","multiple":false,"regex":"","delay":0},{"id":"image_link","type":"SelectorImage","parentSelectors":["tittle"],"selector":"img.a-dynamic-image","multiple":true,"delay":0},{"id":"ASIN","type":"SelectorText","parentSelectors":["tittle"],"selector":"tr:contains('ASIN') td","multiple":false,"regex":"","delay":0},{"id":"descripcion","type":"SelectorText","parentSelectors":["tittle"],"selector":"div#productDescription","multiple":false,"regex":"","delay":0},{"id":"features","type":"SelectorText","parentSelectors":["tittle"],"selector":"div#feature-bullets","multiple":false,"regex":"","delay":0},{"id":"images_all","type":"SelectorHTML","parentSelectors":["tittle"],"selector":"div#leftCol","multiple":true,"regex":"https://images-na.ssl-images-amazon.com/images/I/.{10,20}.AC.jpg","delay":0}]}
So I noticed that the images are stored in a JS, so I extract the div that declares it, then through regex I want to extract all the entries that matches the regex, the thing is it only gets me the first result. Is this possible?