I'm trying to use the OTA API to get the attributes for my test objects. Some of these entries have the type "Lookup". The lists are available in the Customize -> Project List.
I tried my luck with CustomizationList, but somehow I'm stuck its children. It only show up the numbers of entries not the complete list.
...
TestFactory nodeFactory = node.TestFactory;
foreach (dynamic attribute in nodeFactory.Fields){
//read the attribute
CustomizationList children = attribute.Property.Root.List;
}
...
Any idea?