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.