What are the challenges do we face while testing
webbased applcations using the automation tool QTP or any?
Answer Posted / sreeprasad
(1)Unable to understand custom object, then we have to map
that object to standard object.
(2)To handle the runtime objects.
(3)Using Regular Expressions.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How to do call a output parameter from one action to another action??/
How to handle the exceptions using recovery secnario manager in quicktest professional (qtp)?
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
If object is not recognized by qtp but the object is standard object what is your approach?
What is checking bitmaps?
What is the Command used to start the QTP
How you create new action in qtp?
What are the Test design techniques you uses in ur project?
What is a data driven test in qtp?
what are all the fileds present in object repository?
Hi! My OTP script has several bitmap checkpoints included which I check in the test results xml file. The test is for SAP 4.7. I need to save these bitmaps to files or at least export them to the html file using the export function in the test results viewer. Could you please help me with this problem? Thank you in advance! Best regards, Peter
How you are developing the script? Using record and play back or manual?
What is the extension of the qtp local repository? If it is .mtr then what is .bdb extension stands for?
What are the different types of functions available in qtp and explain ?
What is the syntax to call one script from another?