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 |
How do you compare the structure of 2 tables in database and check whether they are similar using qtp.
does qtp need record and playback in realtime. plz tell exactly wat happens
what we do after completion of functional and regression testing
what is descriptive programming? what are the mandotory properties in qtp? what are libriry functions in qtp? what frame work you are using at your project? what is object repositery? what is our role as per qtp project is concerned as a software tester?
Explain types of descriptive programming?
If an application name is changes frequently i.e while recording it has name, in this case how does QTP handles?
What is the Diff between Image check-point and Bit map Check point?
examples of user definied functions? how to write user defined functions in qtp9.2?
Is it possible to call win runner script in qtp?
How do I get the QTP scripts result in xml format by using vb script function?
I am Facing Issues with learing datepicker 1)when i first learn datepicker as current system date . 2)if i wanna runtime datepicker value it gives error
Is there anyway to automatically update the Datasource name in Database Checkpoints object when we migrate tests to a new release?