04-11-2008, 07:54 PM
Hi!
How about this:
Cheers!
How about this:
Code:
set desc=Description.create
desc("html tag").value="INPUT"
desc("name").value="<TheNameOfYourTextField>"
set found=<YourParentPageObject>.childObjects(desc)
editable=found(0).getROProperty("enabled")
(or maybe the property is called "disabled", cant remember, but in case its called that then its:
editable=not found(0).getROProperty("disabled")
Cheers!