How to get redirected urls from shortened ones?

Hi,
I'm trying to scrape this site "https://www.mymovierack.com/web-series?sort=year-latest" and once you get inside any show link (example: https://www.mymovierack.com/show/paper-rocket), you'll see an icon on the left indicated below

image

and has the id ".item-canvas a.no-underline" which has a shortened url of this site which leads to an external, redirected site.

Example on this page : https://www.mymovierack.com/show/paper-rocket
https://www.mymovierack.com/title/toPartner?url=paper-rocket&ottId=17 ---> redirects to --> Watch Paper Rocket Season 1 E1 - An Incomplete Story online in HD on ZEE5

How do I scrape the redirected site's url?

Here's my sitemap for reference:

{"_id":"mmr-scrape","startUrl":["https://www.mymovierack.com/web-series?sort=year-latest"],"selectors":[{"id":"link","parentSelectors":["wrapper"],"type":"SelectorLink","selector":"a.text-muted","multiple":true,"delay":0},{"id":"title","parentSelectors":["link"],"type":"SelectorText","selector":".pad-top span","multiple":false,"delay":0,"regex":""},{"id":"genre","parentSelectors":["link"],"type":"SelectorGroup","selector":"a.btn-xs","delay":0,"extractAttribute":""},{"id":"external-link","parentSelectors":["link"],"type":"SelectorLink","selector":".item-canvas a.no-underline","multiple":false,"delay":0},{"id":"poster","parentSelectors":["link"],"type":"SelectorImage","selector":"picture img","multiple":false,"delay":0},{"id":"release date","parentSelectors":["link"],"type":"SelectorText","selector":"li:nth-of-type(1) .margin-top div.text-muted.font-small","multiple":false,"delay":0,"regex":""},{"id":"plot","parentSelectors":["link"],"type":"SelectorText","selector":"div.plotMaxHeight","multiple":false,"delay":0,"regex":""},{"id":"actors","parentSelectors":["link"],"type":"SelectorGroup","selector":".col-sm-2 a.normal-text-color","delay":0,"extractAttribute":""},{"id":"director","parentSelectors":["link"],"type":"SelectorText","selector":"a.title-cover-font.rating-color","multiple":false,"delay":0,"regex":""},{"id":"platform","parentSelectors":["link"],"type":"SelectorText","selector":".col-sm-12 .item-canvas > div:nth-of-type(1) div div","multiple":false,"delay":0,"regex":""},{"id":"wrapper","parentSelectors":["_root"],"type":"SelectorElementScroll","selector":"li.item","multiple":true,"delay":500}]}```

@kanjra Hello, it doesn't appear that the actual link could be found within the HTML of this page, therefore you should use the redirect link instead. It can be extracted with the following 'Element attribute' selector - .item-canvas a.no-underline, 'Attribute name' - href.