ComboBox: How to know when you can click on the items of a ComboBox after you opened the DropDown
Hi, I am using TestComplete 12 (Desktop Testing). I want to click on ComboBoxItems inside a DropDown of a ComboBox. I need to know when I can click on those items. First step is to click on the ComboBox and open the DropDown. Now I want to click on the items inside the DropDown (items of the ComboBox). The easiest solution is to wait for the property"HasItems" of the ComboBox to be true. But at this time of my program, "HasItems" is already true because I used this ComboBox previously (Items are already loaded). So I can't use this property to know when I can click on the items. I tried to wait for the property "IsDropDownOpen" to be true before clicking.Howeverit seems this property is true before the DropDown is completely opened. The result is: TC12 is too fast and doesn't find the item I am looking for because the DropDown is not completely opened. Do you have any solution for this issue ? I am just trying to wait for a property of the ComboBox to be sure when I can click on the items inside the DropDown (I can't usedirectly the ComboBoxItem that I am looking for). Thanks for your help.2KViews0likes6Comments