cancel
Showing results for 
Search instead for 
Did you mean: 

UFT SAPGuiLabel Identification

0 Kudos

I am using UFT 12.02 through Solution Manager and testing in SAP ERP 6.0 (EHP7)

I am trying to automate some of the configuration processes in SPRO and I am having difficulty with the SAPGuiLabel object identification. An example of this is in transaction OVXC assign Shipping Point to Plant.

For the identification I want to use the property 'content' as this contains the unique Plant ID. However UFT does not recognise the label based on this,

Any suggestions will be very much appreciated.

Best Regards

Jim

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Jim,

How are you doing?

My tip it's use the object spy for every object that you don't know the properties - with this tool you can check all properties that you can use on getRoProperty method.

For SAPGuiLabel you can use the property "text"

It will work like this:

var = SAPGUISession("Session").SAPGuiLabel("yourlabel").getROproperty("text")

Best regards,

JH