O
oitbso
I was trying to collect some real estate data from a website and found thatI was unable to capture the source code using the usual techniques. For example,
my_url = "http://www.coloproperty.com/index.c...ame=Eisenhower&City=61&ResultType=quickReport"
With ie
.Visible = True
.Navigate my_url
.Top = 50
.Left = 530
.Height = 400
.Width = 400
Do Until .ReadyState = 4
DoEvents
Loop
End With
my_var = ie.document.body.innerhtml
opens the desired web page but does not capture the source code. If I right-click the web page and select "View Source", I can see the source code I'd like to capture, but the variable contains just a few lines of something different. Any help on capturing the actual source code behind this web page would be much appreciated...TIA, Ron
my_url = "http://www.coloproperty.com/index.c...ame=Eisenhower&City=61&ResultType=quickReport"
With ie
.Visible = True
.Navigate my_url
.Top = 50
.Left = 530
.Height = 400
.Width = 400
Do Until .ReadyState = 4
DoEvents
Loop
End With
my_var = ie.document.body.innerhtml
opens the desired web page but does not capture the source code. If I right-click the web page and select "View Source", I can see the source code I'd like to capture, but the variable contains just a few lines of something different. Any help on capturing the actual source code behind this web page would be much appreciated...TIA, Ron