10-09-2009, 03:11 PM
Hi yuetling926 ,
Usually for retreiving the checkbox's status(i.e selected or not) the below properties could be used .
--> Checked
--> Selected
Check out the below examples for more info.:
So similarly you try out for Seibel Appl with "Checked/Selected" properties & implement accordingly.
Usually for retreiving the checkbox's status(i.e selected or not) the below properties could be used .
--> Checked
--> Selected
Check out the below examples for more info.:
Code:
In Windows Appl,
WinCheckBox("...").GetROProperty("Checked") Returns "ON/OFF" ( ON-->True,OFF-->False)
IN SAP Appl,
SAPGuiCheckBox("Calculate tax").GetROProperty("checked") Returns nothing(empty msgbox)
SAPGuiCheckBox("Calculate tax").GetROProperty("Selected") Returns "True/Fasle"
In Web Applications,
WebCheckBox("..").GetROProperty("Checked") Returns 0/1 ( 0 --> False , 1 --> True )