Created
November 8, 2016 15:06
-
-
Save ctkirkman/02bd93d8166a88d27f8232697cba5b7b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ie = New-Object -ComObject InternetExplorer.application | |
$ie.Navigate("http://somewebsite") | |
while ($ie.Busy) { Start-Sleep -Seconds 1 } | |
Write-Host $ie.Document.body.innerText | |
$ie.Quit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment