![]() |
![]() |
![]() |
HTTP scripting? I'd like to write a little script to automatically go out to my library website and pull down the list of books that I have checked out.
Matt Conrad
I automate Internet Explorer from perl to perform "black box testing" of web applications. The nice thing about automating IE is that it correctly handles Javascript. You should be able to automate it from any language that can call COM though.
Matthew Lock
what is the DLL you need to link to for ie ole automation?
The Artist Formerly Known as Prince
If I were trying to do this, I'd write a little VB app with an embedded Internet Explorer component and poke things at it. This has the advantage that you don't have to scrape or parse the HTML yourself; you can wait for the document to arrive and then find the things you want in the DOM, all nicely parsed in a tree format for you. Also IE will manage cookies for you.
Joel Spolsky
> what is the DLL you need to link to for ie ole automation?
Matthew Lock
Try cURL. http://curl.haxx.se/
Nitin Bhide
if you are of the perl persuasion try *LWP* - http://www.perldoc.com/perl5.6/lib/LWP.html
peter renshaw
Automating IE sounds quick and easy, which is what I'm looking for here. Thanks for all the suggestions.
Matt Conrad
wget
christopher baus (www.baus.net)
|