我无法让我的测试用例正确运行。
问题出在下面的代码中,确切地说是第一个 if 语句。QTP 抱怨需要一个对象
For j=Lbound(options) to Ubound(options)
If options(j).Contains(choice) Then
MsgBox("Found " & FindThisString & " at index " & _
options.IndexOf(choice))
Else
MsgBox "String not found!"
End If
Next
当我检查数组时,我可以看到它已正确填充,并且 'j' 也是正确的字符串。对此问题的任何帮助将不胜感激。