Sooo close, product color and image on the same line

Describe the problem.
So close, but can't get this right. Please help. Trying to collect the product colors and images on the same line and not all color is selected for some reason.

Url: https://www.showdowndisplays.com/Category/Select?categoryId=1690

Sitemap:
{"_id":"showdwn-test","startUrl":["https://www.showdowndisplays.com/Category/Select?categoryId=1690"],"selectors":[{"id":"linkclick","type":"SelectorLink","parentSelectors":["_root"],"selector":"div.col-customize:nth-of-type(n+3) a","multiple":true,"delay":0},{"id":"sku1","type":"SelectorText","parentSelectors":["linkclick"],"selector":".product-sku span","multiple":true,"regex":"","delay":0},{"id":"productclick","type":"SelectorLink","parentSelectors":["linkclick"],"selector":".product-name a","multiple":true,"delay":0},{"id":"colorname","type":"SelectorElementAttribute","parentSelectors":["elementclick"],"selector":".Swatch","multiple":true,"extractAttribute":"data-title","delay":0},{"id":"image","type":"SelectorElementAttribute","parentSelectors":["elementclick"],"selector":".Swatch","multiple":true,"extractAttribute":"data-image","delay":0},{"id":"elementclick","type":"SelectorElementClick","parentSelectors":["productclick"],"selector":"div#productDesign","multiple":true,"delay":0,"clickElementSelector":".Swatch img","clickType":"clickMore","discardInitialElements":"discard-when-click-element-exists","clickElementUniquenessType":"uniqueCSSSelector"}]}

This is due to both of the selectors as "Multiple". This should work:

{"_id":"showdwn-test","startUrl":["https://www.showdowndisplays.com/Category/Select?categoryId=1690"],"selectors":[{"id":"linkclick","type":"SelectorLink","parentSelectors":["_root"],"selector":"div.col-customize:nth-of-type(n+3) a","multiple":true,"delay":0},{"id":"sku1","type":"SelectorText","parentSelectors":["element"],"selector":".product-sku span","multiple":false,"regex":"","delay":0},{"id":"productclick","type":"SelectorLink","parentSelectors":["element"],"selector":".product-name a","multiple":false,"delay":0},{"id":"colorname","type":"SelectorElementAttribute","parentSelectors":["elementclick"],"selector":"_parent_","multiple":false,"extractAttribute":"data-title","delay":0},{"id":"image","type":"SelectorElementAttribute","parentSelectors":["elementclick"],"selector":"_parent_","multiple":false,"extractAttribute":"data-image","delay":0},{"id":"elementclick","type":"SelectorElement","parentSelectors":["productclick"],"selector":".Swatch","multiple":true,"delay":""},{"id":"element","type":"SelectorElement","parentSelectors":["linkclick"],"selector":"div.col-item","multiple":true,"delay":0}]}

1 Like