Help scraping several fields in one page product with color variations

Hi everybody,

I need your help! I have tried to scrap this page. I want to have a row with:

  • url
  • image (color variation)
  • price

The problem is that I get 2 rows instead 1 and I don't know how to do it

Url: https://www.runnics.com

Sitemap:
{"selectors":[{"id":"shoes","type":"SelectorLink","parentSelectors":["_root"],"selector":"li:nth-of-type(1) td:nth-of-type(1) a:nth-of-type(2)","multiple":false,"delay":"0"},{"id":"link","type":"SelectorLink","parentSelectors":["shoes"],"selector":"li.thehand div.col-sm-4 a","multiple":true,"delay":0},{"id":"color","type":"SelectorElementClick","parentSelectors":["link"],"selector":"div.col-md-12:nth-of-type(2)","multiple":false,"delay":0,"clickElementSelector":"ul.sneaker-color li.item","clickType":"clickOnce","discardInitialElements":true,"clickElementUniquenessType":"uniqueCSSSelector"},{"id":"image","type":"SelectorElementAttribute","parentSelectors":["color"],"selector":"div.active > img.img-responsive","delay":"0","extractAttribute":"title","multiple":true},{"id":"price","type":"SelectorElementAttribute","parentSelectors":["color"],"selector":"div.price-wrapper > meta[itemprop="price"]","delay":"0","extractAttribute":"content","multiple":true}],"_id":"runnics","startUrl":["https://www.runnics.com/"]}

Thanks in advance!

Hi everybody,

I have found the solution, the problem was the image selector

The correct sitemap would be something like this:

{"selectors":[{"id":"shoes","type":"SelectorLink","parentSelectors":["_root"],"selector":"li:nth-of-type(1) td:nth-of-type(1) a:nth-of-type(2)","multiple":false,"delay":0},{"id":"link","type":"SelectorLink","parentSelectors":["shoes"],"selector":"li.thehand div.col-sm-4 a","multiple":true,"delay":0},{"id":"color","type":"SelectorElementClick","parentSelectors":["link"],"selector":"div.col-md-12:nth-of-type(2)","multiple":true,"delay":"100","clickElementSelector":"ul.sneaker-color li.item","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueCSSSelector"},{"parentSelectors":["color"],"type":"SelectorElement","multiple":true,"id":"element","selector":"parent","delay":"500"},{"id":"image","type":"SelectorElementAttribute","parentSelectors":["element"],"selector":"div.article-slide[style="display: block;"] div.item.active img.img-responsive","delay":"0","extractAttribute":"title","multiple":false},{"id":"price","type":"SelectorElementAttribute","parentSelectors":["element"],"selector":"div.price-wrapper > meta[itemprop="price"]","delay":"0","extractAttribute":"content","multiple":false}],"_id":"runnics","startUrl":["https://www.runnics.com/"]}