Search code examples
.netsilktest

Access .NET properties from SilkTest classic


Is it possible to access .NET properties using SilkTest classic (4Test language)? I need to read value of labels that are shown on System.Windows.Forms.DataVisualization.Charting.Chart control.

I can't use GetProperty or DynamicInvoke because when they return something, 4Test automatically converts it to string. So if I call GetProperty("Legends"), I'll get just Legends.ToString(), not the actual LegendCollection object.


Solution

  • As described in this article you can use cascading dynamicInvoke-calls to access the elements in the LegendCollection.

    You can then also access properties of that element if the default ToString() is not appropriate for you.