qtp中有没有一种方法可以检查组合框中是否存在该项目?
我编写了以下代码来获取组合中的所有元素并检查我所需的值,但我认为可能有更好的方法。检查组合框中是否有任何项目的更好方法是什么?无法从 QTP 获得帮助。
For check_index=0 to Window(window_name).Dialog(dialog_name).WinComboBox(control_name).GetItemsCount-1
If Trim(Window(window_name).Dialog(dialog_name).WinComboBox(control_name).GetItem(check_index))
=Trim(input_value_array(i_count)) Then
I have written the following code to get all the elements in the combo and check with my required value, but i think there may be a better way. Whats the better method to check if any item is there in a combobox? couldnt get from the QTP help.
For check_index=0 to Window(window_name).Dialog(dialog_name).WinComboBox(control_name).GetItemsCount-1
If Trim(Window(window_name).Dialog(dialog_name).WinComboBox(control_name).GetItem(check_index))
=Trim(input_value_array(i_count)) Then
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有这样的现成方法。您必须创建自己的函数。
如果您不关心已选择或将选择什么项目,请尝试以下操作:
There is no such method out-of-box. You'll have to create your own function.
If you don't care, what item was or will be selected, try this: