我有這個PS腳本,它登錄到一個網站,然後它導航到另一個頁面。Powershell:下載或保存整個ie頁面的源代碼
我想保存該頁面的整個源代碼。但由於某種原因。源代碼的某些部分沒有出現。
$username = "myuser"
$password = "mypass"
$ie = New-Object -com InternetExplorer.Application
$ie.visible=$true
$ie.navigate("http://www.example.com/login.shtml")
while($ie.ReadyState -ne 4) {start-sleep -m 100}
$ie.document.getElementById("username").value = "$username"
$ie.document.getElementById("pass").value = "$password"
$ie.document.getElementById("frmLogin").submit()
start-sleep 5
$ie.navigate("http://www.example.com/thislink.shtml")
$ie.Document.body.outerHTML | Out-File -FilePath c:\sourcecode.txt
這裏是代碼引擎收錄未跨越
http://pastebin.com/Kcnht6Ry
粘貼似乎是私人的。 –
對不起,現在請檢查一下。我對此做了更多的研究。它忽略了'// <![CDATA [' – user206168