Probably a very basic query but can someone tell me why when using objectspy I click on a :
the object spy lists all the TO methods I can presumably use?
some of them are the following:
GetTOProperty
GetTOProperties
GetROProperty
and so forth,
I need to get the text property from this Static object
But can't seem to be able to.
tried:
doesn't want to give me the text - checking with objectspy the propert is text and click on it I see the text i want, but setting a watch on the variable doesnt show the desired text.
Code:
Dialog("Microsoft Internet Explorer").Static.
the object spy lists all the TO methods I can presumably use?
some of them are the following:
GetTOProperty
GetTOProperties
GetROProperty
and so forth,
I need to get the text property from this Static object
But can't seem to be able to.
tried:
Code:
message = Browser("Browser").Dialog("Microsoft Internet Explorer").Static("staticmessage").GetTOProperty("text")
doesn't want to give me the text - checking with objectspy the propert is text and click on it I see the text i want, but setting a watch on the variable doesnt show the desired text.