The next step is to perform some string prossesing:
After loading the $ie,
browse to the last page of that forum.
Then,
Select-String the loaded $ie for a string AAABBB.
And I am in trouble there.
I tried
$wc = New-Object System.Net.WebClient
$wc.DownloadString($ie) > d:\work\test.html
$d = $ie.document.body.innerhtml
$a = Select-String -Path d:\work\test.html -pattern " EURUSD:
"
$a[-1].ToString().Split(":")
$wc.DownloadString("http://www.google.com") is fine, I think.
How should be the download statement with $ie ?