Hello,
I'm facing problem in Combobox Item selection.
The application under test is developed using VB6.0. I can able to spy combo boxes without any issues or conflicts. But the problem is it always gives the item collection count as 0.
For selecting an item I’ve to do like below:
//Code Snippet
Ranorex.ListItem ComboBoxListItem;
bool bItemFound = combo.TryFindSingle<ListItem>("//item[@text~'text_to_select']",out ComboBoxListItem);
if (bItemFound && ComboBoxListItem != null)
{
ComboBoxListItem.Click();
}
Is there any way to get the Item Collection of Visual Basic 6.0 Combo?