我想将组合框的内容导出到本地数据表,以便我可以使用该值对测试进行参数化。
答案 0 :(得分:1)
您需要从ComboBox获取每个项目。例如,Window Name
和ComboBox 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..
行,将取决于您的设置。