URL of embedded Youtube video

How can I scrape the Youtube URL from this website? I tried various selectors but can't get it to pick the video URL since it needs to be clicked to play the video. Help please, thank you!

Url: https://fitlife.video/simple-healthy-meals-i-ate-today-weekly-food-haul/

Sitemap:
{id:"sitemap code"}

The Youtube URL is actually within a <noscript> tab, so you can get at it with:

Type: HTML
Selector: div > div.thecontent
Regex: https://you[^ ]+

1 Like