'最好写成函数,将该函数添加到QTP的function libraries中,或使用ExecuteFile"函数的路径",这样在需要的读取EXCEL数据的地方都可以直接调用了:
Public Function GetData(ExcelPath,Row,Col)
Set excelApp = CreateObject("Excel.Application")
GetData=excelApp.Workbooks.open(ExcelPath).WorkSheets("测试用例").Cells(Row,Col)
excelApp.Quit
End Function