I have a UI component which is JComboBox. I'm trying to invoke method "getSelectedObjects()" which returns an array of Object[]
public Object[] getSelectedObjects() {
........
}
In the automation I have written the below code..
NativeObject obj = FruitList.getNativeObject();
com.hp.lft.sdk.internal.DynamicObjectProxy uiObj = obj.invokeMethod("getSelectedObjects", com.hp.lft.sdk.internal.DynamicObjectProxy.class, null);
How can I get the Object[] from uiObj object ?
I'm using LeanFT SDK 14.3.0