Scrape Product Details By going into it

Describe the problem.

Url: Everybody's favorite go-to apps – Ecommerce Plugins for Online Stores – Shopify App Store

How to scrape the list and then go into each app and scrape details

Sitemap:
{"_id":"shopify-scraper","startUrl":["https://apps.shopify.com/recommendations/store-design-store-pages"],"selectors":[{"delay":0,"id":"cards","multiple":true,"parentSelectors":["_root"],"selector":"div.ui-app-card","type":"SelectorElement"},{"delay":0,"id":"name","multiple":false,"parentSelectors":["cards"],"regex":"","selector":"h2","type":"SelectorText"},{"delay":0,"id":"rating","multiple":false,"parentSelectors":["cards"],"regex":"","selector":"span.ui-star-rating__rating","type":"SelectorText"},{"delay":0,"id":"desc","multiple":false,"parentSelectors":["cards"],"regex":"","selector":"p","type":"SelectorText"}]}

If there's any tutorial please guide me to it

TIA

@Chirag_Gupta

Hello. From the description you provided it seems that the best way to navigate to the app page would be by using a 'link' selector - a, and you could proceed by adding additional selectors afterward (as a 'child' to it) like - full description for example.

Sitemap example:

{"_id":"shopify-scraper","startUrl":["https://apps.shopify.com/recommendations/store-design-store-pages"],"selectors":[{"delay":0,"id":"cards","multiple":true,"parentSelectors":["_root"],"selector":"div.ui-app-card","type":"SelectorElement"},{"delay":0,"id":"name","multiple":false,"parentSelectors":["cards"],"regex":"","selector":"h2","type":"SelectorText"},{"delay":0,"id":"rating","multiple":false,"parentSelectors":["cards"],"regex":"","selector":"span.ui-star-rating__rating","type":"SelectorText"},{"delay":0,"id":"desc","multiple":false,"parentSelectors":["cards"],"regex":"","selector":"p","type":"SelectorText"},{"delay":0,"id":"link","multiple":false,"parentSelectors":["cards"],"selector":"a","type":"SelectorLink"},{"delay":0,"id":"app-page","multiple":true,"parentSelectors":["link"],"selector":"body:has(.ui-app-store-hero__header__app-name)","type":"SelectorElement"},{"delay":0,"id":"full-description","multiple":false,"parentSelectors":["app-page"],"regex":"","selector":"div.app-listing__detailed-description","type":"SelectorText"}]}