Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $Browser = New-Object -COM "InternetExplorer.Application"
- $URL = "http://filmsbykris.com/v6/index.php"
- $Browser.Navigate($URL)
- While ($Browser.ReadyState -ne 4) { Start-Sleep -Seconds 1 }
- $Divs = $Browser.Document.getElementsByTagName("DIV")
- ForEach ($Div in $Divs)
- {
- $DivText = $Div.InnerHTML.ToString()
- write-output $DivText
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement