Public/Get-NpoLuister.ps1
function Get-NpoLuister { param ( ) ConvertTo-HtmlDocument -Uri 'https://npo.nl/aanbod/npo-luister' | Select-HtmlNode -CssSelector '.card__inner' -All | ForEach-Object { [PSCustomObject]@{ PSTypeName = 'UncommonSense.Npo.Luister' Url = ($_ | Select-HtmlNode -CssSelector '.cluster a').GetAttributeValue('href', '') Title = $_ | Select-HtmlNode -CssSelector 'h3' | Get-HtmlNodeText Synopsis = $_ | Select-HtmlNode -CssSelector 'p' -All | Get-HtmlNodeText Image = ($_ | Select-HtmlNode -CssSelector 'img').GetAttributeValue('src', '') } } } |