1 2 3 4 5 |
$url='https://www.youtube.com/playlist?list=PLoSIOFPSXQoOLkIBDKdDspqXtsdFEFdOV' $result = Invoke-WebRequest $url #Respetar los dos espacios entre "link spf" $result.AllElements | Where Class -eq "pl-video-title-link yt-uix-tile-link yt-uix-sessionlink spf-link " | %{$_.outerText 'https://www.youtube.com'+$_.href} |