As I understand it the solution involves grabbing the document of a
webbrowser, parsing it for html and elements. Then accessing any
elements that are applets and saving all events for the document and
applets. As I save each one in some sort of way, it asks me if it
should be variable. Then I can hopefully spit back those events as some
sort of methods in the client.
Is this possible?
Is this a good idea?
Is there any easier way to script user interaction with IE so that it can
execute indepedently using variables?
Thank you for any thoughts,
Chris Hamilton
hook your routine into each callable event... possibly with a generic
routine.
Dont parse the HTML, use the IE4 object model, found in the InetSDK.
HTH
thomas
Chris Hamilton schrieb in Nachricht ...
Thomas,
I am looking for the exact kind of information Chris described, but using
your instructions above, I can find NOTHING. I have searched the MS site,
etc.
Can you please provide some information about where, specifically to locate
the information necessary to script IE4 interaction with a web site?
Thank you very much.
perhaps I read the original posting not exactly...
"Scripting" is ambigous. I automate IE on pages having HTML and JavaScript,
but have no expirience with applets as of now. That is the "scripting" I do,
not related to using any macro-recorder which might be useful as well. I am
using the MsHtml via the WebBrowser.
When generating new "scripts" I use a special instance, which shows the
actual element I am modifying by hand, and then I hit a button which saves
the
information.
My following "scripts" are programmatic-automatic modifications of the
document (model). It could be done with scripting language, but in case
of errors, debugging is easier in a single-language-setup...
This setup could be automated even further, but I found it better (for me!)
to play around a bit and only protocol necessary steps.
You could add a scripting function, which you hook into every HTML-event
using DHTML to do this or using the events of MsHtml to create a automatic
log.
hope this is clear enough
thomas
(sorry for the delay - snow was calling to be skied <g>)
Arthur Bishop schrieb in Nachricht ...