Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What are the different Recording modes and how do they work?
Home
QuickTest Professional (QTP)
What are the different Recording modes and how do they work?
asked
Jan 14, 2020
in
QuickTest Professional (QTP)
by
GeorgeBell
What are the different Recording modes and how do they work?
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 14, 2020
by
GeorgeBell
QTP provides 3 modes of Recording:
Normal Recording mode
: The default recording method is always the normal mode. This method uses the model of Test Objects and Runtime objects to learn and act on the AUT.
Analog recording mode
: Records the exact mouse and keystrokes that the user performs in relation to either the screen or the AUT window. The steps that are recorded using this method cannot be edited.
The way this usually gets represented in code is:
Window/app.RunAnalog “Track1”
One scenario in which this type of recording can be used is when we are trying to capture a signature.
Low-Level recording mode:
This mode records the coordinates in the application where the operation is performed, irrespective of whether QTP recognizes the specific Object or Operation.
...