Forum Discussion
tristaanogre
15 years agoEsteemed Contributor
ClickItem by index should still work using syntax like
Note that, for index, it MUST be an integer passed. If you send
Other than that, though, from what I can see, there are no "text" values in the combo box as seen by TestComplete. So, index would be the only way to go on this. Please verify that, when attempting using an index, you are making sure you're using an integer value and not a string value, integer values should be valued 0 to 7 for the 8 items in the box.
ClickItem(0)
Note that, for index, it MUST be an integer passed. If you send
ClickItem("0"), this will not work.Other than that, though, from what I can see, there are no "text" values in the combo box as seen by TestComplete. So, index would be the only way to go on this. Please verify that, when attempting using an index, you are making sure you're using an integer value and not a string value, integer values should be valued 0 to 7 for the 8 items in the box.