Hello guys
I have a kind of an easy question - i'm not very much into writing scripts and thougth i could get some help.
I tried seeking the forum, but i guess i haven't found anything about it:
My script is used to navigate on websites, login in to accounts ect... but there is a little problem - mainly i do not know how to get the html source from the website my IE object is currently browsing...
Option Explicit
Dim oIE : Set oIE = CreateObject("InternetExplorer.Application")
oIE.navigate "[page adress]"
Do
WScript.Sleep 500
Loop Until oIE.ReadyState = 4
'other code...
First i'd like to store the html content to a string variable, and then save it to a text file using FSO [that i will manage]
Thanks in advance
chriss87
I have a kind of an easy question - i'm not very much into writing scripts and thougth i could get some help.
I tried seeking the forum, but i guess i haven't found anything about it:
My script is used to navigate on websites, login in to accounts ect... but there is a little problem - mainly i do not know how to get the html source from the website my IE object is currently browsing...
Option Explicit
Dim oIE : Set oIE = CreateObject("InternetExplorer.Application")
oIE.navigate "[page adress]"
Do
WScript.Sleep 500
Loop Until oIE.ReadyState = 4
'other code...
First i'd like to store the html content to a string variable, and then save it to a text file using FSO [that i will manage]
Thanks in advance
chriss87