Hi,
I'm working on Automation for a MFC application where I have to select a value in ComboBox which is included in a List Control with multiple Columns.
Sample application looks like in the attached image.
I'm using following code:
List myListControl = myWindow.getList("MyListName");
java.util.List myListItems = myListControl .getItems();
Above code is returning only items for First Column (i.e : 1,2,3, and 4) . I'm not able to access combo box present in Second Column.
Could you please let me know how can I do the same?
Hi, I'm working on Automation for a MFC application where I have to select a value in ComboBox which is included in a List Control with multiple Columns.
Sample application looks like in the attached image.
I'm using following code: List myListControl = myWindow.getList("MyListName"); java.util.List myListItems = myListControl .getItems();
Above code is returning only items for First Column (i.e : 1,2,3, and 4) . I'm not able to access combo box present in Second Column. Could you please let me know how can I do the same?
Thanks Shashank