12-16-2011, 10:54 AM
QTP results to Excel
There are 2 functions
1)
Description : This function is to initialize a particular Excel Where you want to update the Results of the QTP Tests.
2)
Description : This function appends the Result of a Test to the end of the existing results.
You can modify the below functions to suite your requitrement.
CODE:
Regards,
Sankalp
There are 2 functions
1)
Code:
initOutExcel(sTablePath)
Description : This function is to initialize a particular Excel Where you want to update the Results of the QTP Tests.
2)
Code:
WriteResults(sTablePath,sStatus,sFunctionality,sDescription)
Description : This function appends the Result of a Test to the end of the existing results.
You can modify the below functions to suite your requitrement.
CODE:
Code:
Function initOutExcel(sTablePath)
Datatable.addSheet "Results"
Datatable.importSheet sTablePath, "Results","Results"
iParamCount = Datatable.getSheet("Results").getParameterCount
if iParamCount = 0 Then
Datatable.getSheet("Results").addParameter "S.No",""
Datatable.getSheet("Results").addParameter "Status",""
Datatable.getSheet("Results").addParameter "Functionality",""
Datatable.getSheet("Results").addParameter "Description",""
End If
Datatable.ExportSheet sTablePath,"Results"
End Function
Function WriteResults(sTablePath,sStatus,sFunctionality,sDescription)
Datatable.addSheet "Results"
Datatable.importSheet sTablePath, "Results","Results"
iRowCount = Datatable.getSheet("Results").getRowCount
Datatable.getSheet("Results").setCurrentRow(iRowCount+1)
Datatable("S.No","Results") = iRowCount+1
Datatable("Status","Results") = sStatus
Datatable("Description","Results") = sDescription
Datatable("Functionality","Results") = sFunctionality
Datatable.ExportSheet sTablePath,"Results"
End Function
Regards,
Sankalp