How can we redirect QTP results in to a excel sheet after
the execution
Answers were Sorted based on User's Feedback
Answer / sambasiva rao.m
By default it creates an XML file it displays the results
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / rayudu
You have to create a function for that for example
Pass the below values
strTCNo=23 (Test Case No)
strResult=Pass (Result
public function FnTcStatus (strTCNo,strResult)
DtRwCnt= DataTable.GetSheet("Result").GetRowCount
For l=1 to DtRwCnt
DataTable.SetCurrentRow(l)
If DataTable("A","Result")=strTCNo Then
datatable.Value("TC_Status","Result")=uCase(strResult)&"_"&
Now()
End If
Next
strTcNo=""
strResult=""
end function
| Is This Answer Correct ? | 1 Yes | 9 No |
Can we directly automate testscripts accrdoing to requirements? WHY ?
what is the difference between DP and keyword driven framework?
can anyone tell me how to search a word/line in a document and to paste it in another file? Thanks in advance.
Where virtual objects stores results?
When do go for loop condition in test?
tell me about if in the interview what i should tell about pharma application,what r the pharma application concepts,i need pharma application testing features
Hi im new in Testing..can any one plz re-write this code SystemUtil.Run "C:\Program Files\Mozilla Firefox\firefox.exe","","C:\Program Files\Mozilla Firefox","open" ----using for loop(for i=0;i<=10;i++ )
Did the scripts need lot of maintenance? If yes, why?
Explain key word driven frame work?How to use in real time?
Plz write the code, function will take the parameter as month number, i.e., numerical value, but it returns the last day of the month in string (weekday). example: input: function parameter: 3(march) output: thursday
How can I change object description or check point values in qtp?
What is the dis advantage of check points in QTP, if any?