无法从该网站查看实际的HTML源

时间:2019-04-05 07:46:57

标签: powershell

我正在尝试为网站https://sitereview.bluecoat.com/#/lookup-result/www.google.com下载html

但是在这里我面临着问题。当我从任何浏览器查看源代码时,我都能看到 仅

正在加载...

我需要获取您在浏览器中看到的内容的完整html源。

下面是我粘贴以供参考的示例powershell

 $ie = New-Object -ComObject 'internetExplorer.Application'
 $ie.Visible= $true
 $ie.Navigate("https://sitereview.bluecoat.com/#/lookup-result/www.google.com")

 while ($ie.Busy -eq $true){Start-Sleep -seconds 1;}   

 $ie.Document.body.innerHTML

0 个答案:

没有答案