We have a project that has over 100 WinForms bound to DataSets. We want to implement UI automation for testing purpose but our testers complain that most controls inside the forms have generic names like gridControl1, gridControl2, ... They want more specific names, for example if a grid gridControl2 is bound to a table inv_Adjustment, the name of the grid should be inv_AdjustmentDataGrid.
Is it possible in CodeIt.Right to create a custom rule that looks in code for something like: gridControl2.DataMember = "Inv_Adjustment";
and rename gridControl2 to inv_AdjustmentGridControl?
If this is too much, what would be the best approach?
Thank you,
Sorin
gridControl2.DataMember = "Inv_Adjustment";
and rename gridControl2 to inv_AdjustmentGridControl?
If this is too much, what would be the best approach?
Thank you,
Sorin