Posts: 44
Threads: 30
Joined: Aug 2009
Reputation:
0
12-01-2009, 06:05 PM
Hi,
How can we check the specific object is visible or not. I tried by standard check point (Disabled property) it does not work. It throws an error "Object not found" when the object is hidden.
Posts: 84
Threads: 23
Joined: Sep 2009
Reputation:
0
12-02-2009, 10:05 AM
Hi Anbarasu,
You just use GetROProperty for getting the value i.e disable = 0 or 1 and then use your condition statement.
Thanks
Mahesh
Posts: 50
Threads: 11
Joined: Nov 2009
Reputation:
0
12-02-2009, 11:24 AM
This is one more method to find specific object is visible or not,
1. Select the specific object by using Object spy(Viewing Object Properties and Methods Using the Object
Spy)
2. To view the properties or methods of the run-time object, click the Run-time Object Properties radio button.
3. Check the specific object property is enable or disable
Posts: 49
Threads: 0
Joined: Nov 2009
Reputation:
0
12-02-2009, 05:00 PM
GetROProperty for 'Visible' property. it will return 'True' for visible and False for hidden controls.
V.Selvam