How to scrape all the product information from webpage

Hi,
I have a webpage that consists of a list of products under the "lipstick" category. I can able to get the product link from a particular webpage. Attached sitemap and Url below,

I need to scrape information from this webpage for the following,

  1. The following product has different shades that are each product contains different varieties by color pallets(For example, a single product contains 12 different shades). I need to scrape detail product information from a particular product using a web scraper.
  2. Is this possible to get the current browser URL using web scraper addon?
  3. I can't able to get the skuId from a particular product, the link which is I'm scraped skuId using "ElementAttribute" that is wrong.

Url: https://www.nykaa.com/makeup/lips/lipstick/c/249

ProductUrl: https://www.nykaa.com/masaba-by-nykaa-lipstick/p/513103?categoryId=249&productId=513103&ptype=product&skuId=513097

Sitemap:
{
"_id": "lipstick",
"startUrl": ["https://www.nykaa.com/makeup/lips/lipstick/c/249?page_no=[1-2]"],
"selectors": [{
"id": "root",
"type": "SelectorElement",
"parentSelectors": ["_root"],
"selector": "div.product-list-box",
"multiple": true,
"delay": 0
}, {
"id": "name",
"type": "SelectorText",
"parentSelectors": ["root"],
"selector": "h2, h2 span",
"multiple": false,
"regex": "",
"delay": 0
}, {
"id": "link",
"type": "SelectorElementAttribute",
"parentSelectors": ["root"],
"selector": "a",
"multiple": false,
"extractAttribute": "href",
"delay": 0
}]
}

Type: Link would work better here as it will get you the full url with domain name:

{"_id":"forum-nykaa","startUrl":["https://www.nykaa.com/makeup/lips/lipstick/c/249?page_no=[1-2]"],"selectors":[{"id":"wrappers","type":"SelectorElement","parentSelectors":["_root"],"selector":"div.card-wrapper-container","multiple":true,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["wrappers"],"selector":"h2, h2 span","multiple":false,"regex":"","delay":0},{"id":"link","type":"SelectorLink","parentSelectors":["wrappers"],"selector":"div > a","multiple":false,"delay":0}]}