I'm downloading website with such command:
$response = Invoke-WebRequest 'http://stackoverflow.com'
Is it possible to use querySelector or querySelectorAll to find certain elements? I know I can use $response.ParsedHtml.all
and filter those, but I want to use more sophisticated query and I don't see anything in $response.ParsedHtml.documentElement
.
I'm using powershell 3 RC.