I want to do Certification course in QTP. For this I
request you to suggest the best Tutorial in PDF format, as
i'm not in a possition to afford any 'Fee' to join in any
institutions.
Hence, if possible, kinldy mail PDF file to my mail-ID:
chakri_avala@yahoo.co.in
Regards,
Chakradhar Yadav.
Answer Posted / indrapriyadarsini.g
hai,me also want the same one.Please send the material to
my mail.my mail id indrapriyadarsini.g@tcs.com
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can we write winrunner language i.e TSL in QTP tool?
How to call a test from another test?
Hi Friends... By using QTP , can we test .net products...and that product supports different languages.. thanx in advance..
What are the methods used in UFT to handle exceptions or run-time errors?
How qtp identifies objects?
Can any one tell me how to write a script for selecting open option in File menu of A word document.here you have to add objects to OR.try like that and give me the ans.i asked this question to so many but no one knows.if any one know the answer plz let me know
1.How to record ,capture and also script to capture the close buttons. 2.How to record ,capture and also script to capture the options ---File ->save and File ->close in a browser and PDF files. 3.How to compare the Excel sheet values in a report using QTP scripting. 4.How to compare 2 PDf reports using QTP scripts as well reording. 5.How to compare 2 Excel reports using QTP scripts as well reording. 6.How to save a PDF report to a folder and then translate the report to an Excel type of report and compare that Excel Report with an other excel report. Please clarify me
Explain more about the Test Fusion Report of QTP?
How to execute a winrunner script in quicktest professional (qtp)?
what is the diff b/w assistive and mandatary rules of object repository in QTP???
Generic function to search for the unique link in webtable and click on it
How reliable are the site's Internet connections required to be? And how does that affect backup system or redundant connection requirements and testing?
Hi, How Accessibility checkpoint in QTP can be implemented in the test script?
how do u manipulating INI, DLL and / or registry files in support of your test environment? actually what do u mean by INI and DLL or registry files. plzzz its urgent do answer
I used the below code to open QTP through VBscript?But i can unable to Invoke QTP...PLZ help me with the correct code to invoke QTP through VBS with description of the code aswell. Dim qtApp 'As QuickTest.Application 'Declare the Application object variable Dim qtTest 'As QuickTest.Test 'Declare a Test object variable Dim qtResultsOpt 'Declare a Run Results Options object variable Set qtApp = CreateObject("QuickTest.Application") 'Create the Application object qtApp.Launch 'Start QuickTest qtApp.Visible = False 'Make the QuickTest application visible qtApp.Open "C:\form", True 'Open the test in read-only mode 'set run settings for the test Set qtTest = qtApp.Test qtTest.Run 'Run the test 'WScript.StdOut.Write "Status is: " & qtTest.LastRunResults.Status 'Check the results of the test run qtTest.Close 'Close the test qtApp.quit 'Close QuickTest Pro Set qtResultsOpt = Nothing 'Release the Run Results Options object Set qtTest = Nothing 'Release the Test object Set qtApp = Nothing 'Release the Application object