And have a look at these for a bit more info:
http://www.microsoft.com/t
http://www.eggheadcafe.com
http://www.rgagnon.com/pbd
Regards,
Rob.
Main Topics
Browse All TopicsI'm trying to automate Internet Explorer.
The goal is to use IE to run a search on google for "wombat" then save the file on hard disk for later processing.
I have a few syntax errors in my script below.
Please correct the errors.
Also any links about the IE6 COM object and it's interfaces.
Environment: Windows XP SP2, IE 6.0
Sample script
'
' IE Automation test
'
Dim WshShell
Set WshShell = WScript.CreateObject("WScr
Set oIE = CreateObject("InternetExpl
oIE.Visible = True
oIE.Navigate "http://www.google.com"
Do While oIE.Busy Or (oIE.READYSTATE <> 4)
Wscript.Sleep 10
Loop
'Do search
oIE.document.forms(0).elem
oIE.document.forms(0).subm
Do While oIE.Busy Or (oIE.READYSTATE <> 4)
Wscript.Sleep 10
Loop
'Write results to a text file
PageCache = oIE.document.body.innerHTM
Set objFileSystem = CreateObject("Scripting.fi
Set objOutputFile = objFileSystem.CreateTextFi
objOutputFile.WriteLine(Pa
objOutputFile.Close
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
And have a look at these for a bit more info:
http://www.microsoft.com/t
http://www.eggheadcafe.com
http://www.rgagnon.com/pbd
Regards,
Rob.
hi matt
no problemo, check this out:
'
' IE Automation test
'
Dim WshShell, objOutputFile, PageCache
Set WshShell = WScript.CreateObject("WScr
Set oIE = CreateObject("InternetExpl
oIE.Visible = True
oIE.Navigate "http://www.google.com/"
Do While oIE.Busy Or (oIE.READYSTATE <> 4)
Wscript.Sleep 100
Loop
oIE.document.f.q.value = "wombat"
oIE.document.f.submit()
Do While oIE.Busy Or (oIE.READYSTATE <> 4)
Wscript.Sleep 100
Loop
'Write results to a text file
PageCache = oIE.document.body.innerHTM
Set objFileSystem = CreateObject("Scripting.fi
Set objOutputFile = objFileSystem.CreateTextFi
objOutputFile.WriteLine(Pa
objOutputFile.Close
Business Accounts
Answer for Membership
by: basicinstinctPosted on 2007-08-24 at 21:16:33ID: 19766747
here's one way of doing it:
ipt.Shell" ) orer.Appli cation") rch?q=womb at"
L leSystemOb ject") le("c:\wom bat_cache. html", 2, TRUE) geCache)
'
' IE Automation test
'
Dim WshShell, objOutputFile, PageCache
Set WshShell = WScript.CreateObject("WScr
Set oIE = CreateObject("InternetExpl
oIE.Visible = True
oIE.Navigate "http://www.google.com/sea
Do While oIE.Busy Or (oIE.READYSTATE <> 4)
Wscript.Sleep 100
Loop
'Write results to a text file
PageCache = oIE.document.body.innerHTM
Set objFileSystem = CreateObject("Scripting.fi
Set objOutputFile = objFileSystem.CreateTextFi
objOutputFile.WriteLine(Pa
objOutputFile.Close