Using NetAdvantage Windows Forms 10.3 with TestAdvantage proxy for RFT 8.1.1.3.
I would like to get down to the rows/cells by index within an UltraCombo within a grid's column. The column with the header I'm looking at has its EditorComponent property set to an UltraCombo with the name GovernmentCodeUltraCombo as seen below. Starting with (generically) grid.DisplayLayout.Bands[0].Columns["My Column Name"].EditorComponent, we've tried many permunations of recognition methods and come up with nothing. Ideas?
Try This:
UltraGridTestObject().GetNAProperty("DisplayLayout.Bands[0].Columns[My Column Name].EditorComponent.Rows[0].Cells[0].Text")
You can also work directly with the Combo if it is dropped down and added to the object map:
UltraComboTestAbject().GetNAProperty(Rows[0].Cells[0].Text)
Let me know how that goes
Regards,
Ammar
That, indeed, got me on the right track. Thanks, Ammar!