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 take 'dim my pen is good' as a paramerter
What is the exact difference bet function and action in QTP Anybody can explain it in detail..Thanks in advance..
How do you find out whether the string is Numeric or Alpha numenric.Suppose..'QTP is an automation testing tool 12345' How should I know it is alphanumeric.Can any one please write the code for this
What are the differences between quicktest professional (qtp) and winrunner?
How do I modify a value of an elemnt which is not the first one in xml file? My sample XML file is like: <Environment> <Variable> <Name>Name</Name> <Value>Uday Kumar</Value> </Variable> <Variable> <Name>Designation</Name> <Value>Senior Software Engineer</Value> </Variable> </Environment> for example, I'd like to change the value 'Senior Software Engineer' to 'Student' in the second element. How do I do it in QTP?
Give me brief idea about QTP automation object model?
for example one window is there, the window contains how many edit box's i want script? i know the script but that is not exact answer.... The script is like this .......... set a=description.creation() a("Native class")="WinEdit" b=window("Flight Reservation").childobject(a).count msgbox b
I have a tool bar where 5 different buttons are placed, but these buttons are not traceable hence i have created a virtual object on save button of this toolbar. Now pls tell me how to use this virtual object while write script.
Hi can anyone pls suggest how to fetch username(system login name)and system name in to qtp.I am not using TD or QC.Thx
Any body have QTP 9.5 licence key. please provide me at madhukar_dec30@yahoo.co.in
Explain sub procedure of vbscript.
When to use descriptive programming?