I want to scrap some image form website. The script can walk through next_page, but only get first image url ,not all the rest page.Please tell me how to do.
Sitemap:
{
"_id":"new",
"startUrl":[
"https://manhua.fffdm.com/2/"
],
"selectors":[
{
"id":"episode",
"parentSelectors":[
"wrapper"
],
"type":"SelectorLink",
"selector":"a",
"multiple":false,
"delay":0
},
{
"id":"wrapper",
"parentSelectors":[
"_root"
],
"type":"SelectorElement",
"selector":"li.pure-u-1-2",
"multiple":true,
"delay":0
},
{
"id":"next_page",
"parentSelectors":[
"episode",
"next_page"
],
"paginationType":"auto",
"selector":"a.pure-button-primary:nth-last-of-type(1)",
"type":"SelectorPagination"
},
{
"id":"img",
"parentSelectors":[
"episode",
"next_page"
],
"type":"SelectorImage",
"selector":"img#mhpic",
"multiple":false,
"delay":0
}
]
}

