How to export QTP results to an .xls file?
Answers were Sorted based on User's Feedback
Answer / madivalappa patil
I hope this answer will suit your query:
After you execute QTP tests the result will be stored in
report.xml file under current test directory.
Open blank excel-->Data-->Import External Data-->Import Data
you will get select Datasource Dialog box then browse your
test report.xml and click ok.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / deeps
Hi,
DataTable.Export("file path")
DataTable.ExportSheet("filepath","DTsheet")
DTsheet:index or name of the sheet which u want to export
to excel file.
Ex:
Datatable.Exportsheet("c:\name.xls","name")
Datatable.exportsheet("c:\name.xls",1)
| Is This Answer Correct ? | 20 Yes | 11 No |
Answer / barun choudhary
(a) By default it creates an "XML" file and displays the results
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / naveen rana
By default it creates an "XML" file and displays the results
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jayadev acharam
Datatable.Export("C:\Results\Actuals.xls")
| Is This Answer Correct ? | 14 Yes | 16 No |
Answer / lija
Datatable.export and also given path where ever you want
to the result
Datatable.Export("C:\Documents and
Settings\\Desktop\result.xls")
| Is This Answer Correct ? | 4 Yes | 6 No |
Answer / jyoshna.e
hai deep can you plz write comments for the script like
what is this name an 1 like these
| Is This Answer Correct ? | 3 Yes | 12 No |
Answer / shavali
I THINK IT IS NOT CLEAR . WE HAVE PASS THE RESULT DIRECTLY
INTO THE XL SHEET. SUPPOSE IF LOGIN PAGE IS VALID THAT IS
USERID AND PASSWORD AND LOGINBUTTON IS WORKING THEN THESE
TEST CASES SHOULD BE DISPLAYED IN XLFILE
IF POSSIBLE I WILL TRY THIS CODE
CORRECT ME IF IAM WRONG
| Is This Answer Correct ? | 3 Yes | 12 No |
Answer / sagar kumar sutar
Hi Deeps all the above answers are absolutely wrong. Can
any one please answer properly. We are not going to export
our sheet. That is DataTable object every body knows it.
But i want QTP results to export in .xls format. Awaitnig
ur reply soon.
| Is This Answer Correct ? | 2 Yes | 12 No |
It is not possible to Export the Results Directely into
Excel File,but it is possible to Export the Results into
Runtime Datatable.
EX:
datatable.AddSheet "venu"
datatable.DeleteSheet "Global"
datatable.DeleteSheet "Action1"
datatable.ImportSheet "C:\Documents and
Settings\Administrator\Desktop\Mallik.xls",1,"venu"
For i=1 to 9
datatable.SetCurrentRow(i)
systemutil.Run "C:\Program Files\Mercury
Interactive\QuickTest
Professional\samples\flight\app\flight4a.exe"
Dialog("Login").WinEdit("Agent Name:").Set datatable
("A","venu")
Dialog("Login").WinEdit("Password:").Set datatable
("B","venu")
Dialog("Login").WinButton("OK").Click
Window("Flight Reservation").WinMenu
("Menu").Select "File;Open Order..."
Window("Flight Reservation").Dialog("Open
Order").WinCheckBox("Order No.").Set "ON"
Window("Flight Reservation").Dialog("Open Order").WinEdit
("Edit_2").Set datatable("C","venu")
Window("Flight Reservation").Dialog("Open Order").WinButton
("OK").Click
x = Window("Flight Reservation").WinEdit
("Name:").GetVisibleText()
Datatable("D","venu")=x
Window("Flight Reservation").Close
Next
Results:x values will be Printed into Runtime Datatatable
in D column
| Is This Answer Correct ? | 2 Yes | 14 No |
what is difference between application testing and product testing?
How u send bugs to dev'lpment team all at once or one by one or waht is the process?
I got an error "The"flightres" Dialog was not found in the Object Repository. Check the OR to confirm that the object exists or to find the correct name for the object." while running the following script Set flightres=description.Create() flightres("text").value="Login" flightres("Class Name").value="Dialog" Set agent = description.Create() agent("nativeclass").value="WinEdit" agent("attachedtext").value="Agent Name:" Set pwd = description.Create() pwd("nativeclass").value="WinEdit" pwd("attachedtext").value="Password" Set button = description.Create() button("nativeclass").value="WinButton" button("Text").value="OK" Dialog("flightres").WinEdit("agent").Set "test" Dialog("flightres").WinEdit("pwd").Set "mercury" Dialog("flightres").WinButton("button").Click Please let me know if i made any mistake in the above script...?
can i login a page by giving username and password and click on ok button through database parameterization.and if its yes then please write the code of that
Can anyone tell me about "Step- By Step Paramterization". among the two paramaterizations, Step by step and Parameterize All, which one is mostly used.
How to import the Test Results in QTP to an Excel sheet
examples of user definied functions? how to write user defined functions in qtp9.2?
How to do Laod testing for web based Application?
I want to do QTP Certification what is the pattern of Question paper.
If some requirements r changed during the testing process ,then how can u handle this in frame work?
Can we test the Word Document using QTP Tool? We should test the page size,page set up, paragraph indentation and spacing, font size of the the character int the page.
What do you to script when objects are removed from application?