Trying to scrape image data from the below mentioned page. Data preview shows me all the image urls. But final csv file just provides me the url of first image in slider. I am not sure if I am doing the correct approach.
Url: https://www.rakuten.com/shop/bestchoiceproducts/product/SKY1666/
Sitemap:
{
"_id":"random_data",
"startUrl":[
"https://www.rakuten.com/category/434/?h=3"
],
"selectors":[
{
"id":"category",
"type":"SelectorLink",
"parentSelectors":[
"_root"
],
"selector":"li.r-search-page__category-item li.r-search-page__category-item li.r-search-page__category-item a",
"multiple":true,
"delay":0
},
{
"id":"pagination",
"type":"SelectorLink",
"parentSelectors":[
"category",
"pagination"
],
"selector":"li.r-pagination__item:nth-of-type(n+3) a",
"multiple":true,
"delay":0
},
{
"id":"item",
"type":"SelectorLink",
"parentSelectors":[
"pagination"
],
"selector":"div.r-items div.r-product__name a",
"multiple":true,
"delay":0
},
{
"id":"title",
"type":"SelectorText",
"parentSelectors":[
"item"
],
"selector":"h1.r-product-details__name",
"multiple":false,
"regex":"",
"delay":0
},
{
"id":"price",
"type":"SelectorText",
"parentSelectors":[
"item"
],
"selector":"span.r-product__price-text",
"multiple":false,
"regex":"",
"delay":0
},
{
"id":"description",
"type":"SelectorText",
"parentSelectors":[
"item"
],
"selector":"div.r-product-page__description div.r-accordion:nth-of-type(1) div.r-accordion__child",
"multiple":false,
"regex":"",
"delay":0
},
{
"id":"seller",
"type":"SelectorText",
"parentSelectors":[
"item"
],
"selector":"div.r-product-page__seller-info a.r-button:nth-of-type(1)",
"multiple":false,
"regex":"",
"delay":0
},
{
"id":"rating",
"type":"SelectorHTML",
"parentSelectors":[
"item"
],
"selector":"button.bv_avgRating",
"multiple":false,
"regex":"",
"delay":0
},
{
"id":"no_of_reviews",
"type":"SelectorHTML",
"parentSelectors":[
"item"
],
"selector":"button.bv_numReviews_text",
"multiple":false,
"regex":"",
"delay":0
},
{
"id":"images",
"type":"SelectorImage",
"parentSelectors":[
"item"
],
"selector":"div.r-gallery-slider__full img.slide-image",
"multiple":true,
"delay":"0"
}
]
}

