'三种 property
'RO:run-time object,运行时的被测实际对象
'TO:test object,对象库中存储的测试对象
'1、GetROProperty(): 获取被测对象的运行时属性
'2、SetTOProperty():修改运行时被测对象的属性,
'SetTOProperty changes the property values used to identify an object during the test run.
'It has no effect on the values saved in the Object Repository for the object.
'3、GetTOProperty():取得仓库对象的某个属性的值
'msgbox Window("Flight Reservation").WinEdit("Name").GetROProperty("text")
'msgbox Window("Flight Reservation").WinEdit("Name").GetTOProperty("text")
window("Flight Reservation").WinEdit("Name").SetTOProperty "pp","test flight"
msgbox window("Flight Reservation").WinEdit("Name").GetToProperty("pp")