4
我下載的網站,這樣的命令:是否有可能在PowerShell 3.0中的Invoke-WebRequest中使用document.querySelector?
$response = Invoke-WebRequest 'http://stackoverflow.com'
是否有可能使用querySelector或querySelectorAll找到某些元素?我知道我可以使用$response.ParsedHtml.all
並對其進行過濾,但我想使用更復雜的查詢,並且我在$response.ParsedHtml.documentElement
中看不到任何內容。
我正在使用powershell 3 RC。