I would like to use Ruby to create an automation tool to transfer
information from one web page (contains all information) to another
web page (a linear progression of web pages).
I have the usual
ie = WIN32OLE.new(‘InternetExplorer.Application’)
ie.visible = true
and I will do this two times (one for each page). But when I try to
access the ‘zip’ information, I can’t seem to get it and I have tried
a lot of things…
Here is a snippet of the page that I have
MAIN PAGE
SUBPAGE atrepts.html
How would I use
ie.getproperty() to retrieve this value? I have tried a number of
things without success like:
ie.getproperty(“query3”)
ie.getproperty(“query3.value”)
ie.getproperty(“document.query3”)
ie.getproperty(“document.all.query3.value”)
but I am not having any luck with any of these. any help would be
great.
thanks
Craig A.
ander882cms@yahoo.com (Craig J.) wrote in message news:64b0216e.0210220908.19be4833@posting.google.com…
[SNIP]
MAIN PAGE
SUBPAGE atrepts.html
ie.document.frames(1).document.all.query3.value
it’s nice when you can answer your own question.
[note to reader] 2 days of hair pulling fo get it right. Thanks Eddison.