You are on page 1of 4

1. What are the Features & Benefits of Quick Test Pro (QTP)..?

Operates stand-alone, or integrated into Mercury Business Process Testing and Mercury
Quality Center. Introduces next-generation zero-configuration Keyword Driven testing
technology in QuickTest Professional 8.0 allowing for fast test creation, easier
2. Where can I get Quck Test pro (QTP Pro) software.. This is Just for Information
purpose only.
Introduction to QuickTest Professional 8.0, Computer Based Training: Please find the
step to get QuickTest Professional 8.0 CBT Step by Step Tutorial and Evaluation copy of
the software. The full CBT is 162 MB. You will have to create account to be able
3. How to handle the exceptions using recovery secnario manager in Qtp?
There are 4 trigger events during which a recovery scenario should be activated. They are
A pop up window appears in an opened application during the test run. A property of an
object changes its state or value. A step in the test does
4. What is the use of Text output value in Qtp?
Answer posted by shreethik on 2005-06-09 08:36:38: Output values enable to view the
values that the application talkes during run time.When paramaterised, the values change
for each iteration.Thus by creating output values, we can capture the values that
5. How to use the Object spy in QTP 8.2 versions?
6. What is the file extension of the code file & object repository file in QTP?
Regarding code I have no idea but for object reposirory there are 2 filesShared
repository .tstper test .mtr
7. Explain the concept of object repository & how QTP recognises objects?
With QTP 8.2, there available QTP Plus,setup.It provides Repositories Merge Utility.The
Object Repository Merge Utility enables user to merge Object repository files into a
single Object repository file.
8. What are the properties you would use for identifying a browser & page when
using descriptive programming?
For Browser We will have to see for "title"For Page also We will have to see for "title"
9. What are the different scripting languages you could use when working with
QTP?
This will also support java script, but i hve not tries refer Quick test plus help for each
functions they have give code in vbs and js.
10. Give me an example where you have used a COM interface in your QTP
project?
com inteface appears in the scenario of front end and back end.for eg:if you r using oracle
as back end and front end as VB or any language then for better compatibility we will go
for an interface.of which COM wil be one among those intefaces.

11. Few basic questions on commonly used Excel VBA functions.


Common functions are: Coloring the cell Auto fit cell setting navigation from link in one
cell to other saving
12. Explain the keyword createobject with an example.
Createobject:Creates and returns a reference to an Automation object.Example:Dim
ExcelSheetSet ExcelSheet = CreateObject("Excel.Sheet")
13. Explain in brief about the QTP Automation Object Model.
Hello Friends,
Can anyone explain, as what is a Framework and how to create a
Framework using any automation tool like WinRunner or QTP?
14. How to handle dynamic objects in QTP?
Using GETRO Property we will handle the runtime objects.
15. What is a Run-Time Data Table? Where can I find and view this table?
The test results tree also includes the table-shaped icon that displays the run-time Data
Tablea table that shows the values used to run a test containing Data Table parameters
or the Data Table output values retrieved from a test while application
16. How does Parameterization and Data-Driving relate to each other in QTP?
How i can get evaluation version of QTP.
17. What is the difference between Call to Action and Copy Action?
When u insert a call to action,they r read only in the calling test.It can be modified in the
original test.where as come to copy action,you can make changes to the copied
action,your changes will not effect the original action where it created.
18. Discuss QTP Environment.
QuickTest Pro environment using the graphical interface and ActiveScreen technologies A testing process for creating test scripts, relating manual test requirements to automated
verification features - Data driving to use several sets of data using
19. Explain the concept of how QTP identifies object.
During recording qtp looks at the object and stores it as test object.For each test object
QT learns a set of default properties called mandatory properties,and look at the rest of
the objects to check whether this properties are enough to uniquely identify
20. Differentiate the two Object Repository Types of QTP.
In Qtp there are 2 object repositories, they are1.Shared Object Repository2.Per Action
Mode,by default it's per action mode.we will use shared OR for calling a particular
action,it's like calling external libraries.we will use per action for a particular
21. What the differences are and best practical application of each.

Per Action: For Each Action, one Object Repository is created. Shared: One Object
Repository is used by entire application
22. Explain what the difference between Shared Repository and Per_Action
Repository
In Shared reporsitory, one object is used in more than one actions and in per action
reporsitory, everytime in every action, objects are stored differently and are not shared.
23. Have you ever written a compiled module? If yes tell me about some of the
functions that you wrote.
I used the functions for capturing the dynamic data during runtime. Function used for
Capturing Desktop, browser and pages.
24. What projects have you used WinRunner on? Tell me about some of the
challenges that arose and how you handled them.
pbs :WR fails to identify the object in gui. If there is a non std window obk wr cannot
recognize it, we use GUI SPY for that to handle such situation
25. Can you do more than just capture and playback?
Yes you can do more than capture/playback. Descriptive Programming is the answer to
this question. We can write scripts without recording and it would still work fine.
26. How long have you used the product?
27. How to do the scripting. Is there any inbuilt function in QTP as in QTP-S.
Whatz the difference between them? how to handle script issues?
Yes, there's an in-built functionality called "Step Generator" in Insert->Step->Step
Generator -F7, which will generate the scripts as u enter the appropriate steps.
28. What is the difference between check point and output value.
Additional comment on Above comment:An output value is a value retrieved during the
runsession and entered into runtime table or data table subsequently it can be used as
input value in your test.
29. IF we use batch testing.the result shown for last action only.in that how can i get
result for every action.
u can click on the icon in the tree view to view the result of every action
30. How the exception handling can be done using QTP
Recovery scenario manager provides a wizard that guides you through the defining
recovery scenario. Recovery scenario has three steps 1. Triggered Events 2. Recovery
steps 3. Post Recovery Test-Run
31. How do you test siebel application using qtp?
In SWE section u need to addAutomationEnable = TRUE and at the same time you need
to use SWECmd= AutoOn in the URL

32. How many types of Actions are there in QTP?


QTP structured by actions.actions are subprocedures which perform certain actions on
application under test.there are 2 types of actionsregular actions (non reusable actions)
reusable actionsregular actions:regular actions are used only in the script in
33. How do you data drive an external spreadsheet?
Import from External Spreadsheet File by selecting Import then From File . Which
imports a tabbed text file or a single sheet from an existing Microsoft Excel file into the
table. The sheet you import replaces all data in the currently selected
34. I want to open a Notepad window without recording a test and I do not want to
use SystemUtil.Run command as well how do I do this?
Another alternative to open a notepad is to use ShellObject. Check out with the following
example:Dim aSet a = WScript.CreateObject ("WSCript.shell")a.run "notepad.exe"
35. how many types of recording modes in QTP?describe each type with an
example where we use them?
3 types of recording modes in QTP.1.norma 2.analog mode 3.low level recording
mode.pls describe where we use them exactly..

You might also like