如何将组合框的内容导出到数据表?

时间:2012-02-13 04:36:57

标签: vbscript qtp

我想将组合框的内容导出到本地数据表,以便我可以使用该值对测试进行参数化。

1 个答案:

答案 0 :(得分:1)

您需要从ComboBox获取每个项目。例如,Window NameComboBox Name分别是窗口和ComboBox的名称

comboBox = Window("Window Name").WinComboBox("ComboBox Name");
count = comboBox.GetItemsCount
For i = 0 to count-1 
  item = comboBox.GetItem(i) 
  ' put the item in the DataTable...
Next

如何输出每个项目' put the item in the DataTable..行,将取决于您的设置。