Dynamic descriptive programming unable to identify object where as static Descriptive programme able to identify the same with same properties
where as
returning TRUE.
Please suggest
Code:
Set objTest=description.create
objTest("attached text").value=".*"
objTest("length").value="10"
set arrChilds=TeWindow("short name:=^[A-Z]").TeScreen("label:=.*").ChildObjects()
msgbox arrChilds.Count 'returning 0 for COUNT
where as
Code:
TeWindow("short name:=^[A-Z]").TeScreen("label:=.*").TeField("attached text:=.*","length:=10").exists
returning TRUE.
Please suggest