What is the difference between low level recording and
analog recording mode when it will be enabled.
Answers were Sorted based on User's Feedback
Answer / uday kumar_anem
There are some differences between Analog and Low-Level
Recording modes:
1. Analog mode is useful for recording operations that
cannot be recorded at the level of an object, for example,
recording a signature.
Low-Level recording mode enables you to record on any
object in your application, whether or not QTP recognizes
the specific object or the specific operation.
2. In analog recording mode, the exact mouse movement and
keyboard operations are important. Which means that if the
application is moved to some another place in your desktop
the test may fail.
You can also use low-level recording if the exact
coordinates of the object(not the mouse movements) are
important for your test.
3. A single statement is generated if you working in analog
mode. Here it records all operations in a single file, and
just calls to that file. Here we cannot edit the steps in
analog mode.
For each operation seperate statement will be created in
Low-level recording mode.
Is This Answer Correct ? | 18 Yes | 5 No |
Answer / sreeprasad
Analog Recording enables you to record with respect to
Screen Co-ordinates.
Low Level Recording enable you to record on any object with
repect to window.
2nd answer
Analog Recording, a single recorded statement is created,
so that we cannot edit recorded statements.
Low-Level Recording, statements are generated according to
operation you do on that object. Each statement starts
with "Window". Here we can edit the recorded statements.
Is This Answer Correct ? | 13 Yes | 5 No |
Answer / ashok
analog;it is used 2 capturing the userr movements across
the screen
or it records the operation performed on bitmap
low level;it records the operation of mouse n keyboard
based window coordinates ,it recognises every window as
object
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / vaani raj
with analog record mode we can capture the mouse movements
and keyboard stroke. it will ignore the objects at the time
of recording. In case of low level both can be possible and
with this mode 100 % the object can be identified
Is This Answer Correct ? | 0 Yes | 2 No |
Answer / harikrishna m.
in analog we can capture the digital signature
but that is not posible wit lowlevel
Is This Answer Correct ? | 1 Yes | 6 No |
what is action in QTP?
What is the virtual object?
Inserting a Call to Action is not importing all columns in Datatable of globalsheet. Why?
How to creating an output value using quicktest professional?
How to export QTP results to an ".xls" file?
How to call a test from another test?
How to create Userdefined Function.Please write the steps ans also provide example where exatcly we use it.
Is QTP Object Oriented language or Object Based language? What are the OOPS concepts it will support? Why it wont support all the OOPS concepts?
I have to pass all the test cases into gmail userid and password using functions please give me code thanks have anice and greate day
difference between GetROProperty and GetTOProperty
What is the standard timing delay for web based application in qtp?
Hi All Below is my script which i made for lgin into Flight.exe. SystemUtil.Run "C:\Program Files\Mercury Interactive\QuickTest Professional\samples\flight\app\flight4a.exe","","C:\Program Files\Mercury Interactive\QuickTest Professional\samples\flight\app\","open" Dialog("Login").WinEdit("Agent Name:").Set DataTable ("p_Text", dtGlobalSheet) Dialog("Login").WinEdit("Agent Name:").Type micTab Dialog("Login").WinEdit("Password:").SetSecure DataTable ("p_Text1", dtGlobalSheet) Dialog("Login").WinButton("OK").Click If Dialog("Login").Dialog("Flight Reservations").WinButton ("OK").exist Then Dialog("Login").Dialog("Flight Reservations").WinButton ("OK").Click datatable.Value(3)= "Incorrect password. Please try again" Dialog("Login").WinButton("CANCEL").Click elseif Dialog("Login").Dialog("Flight Reservations").WinButton("OK").exist Then Dialog("Login").Dialog("Flight Reservations").WinButton("OK").Click datatable.Value(3)="Please enter agent name" Dialog ("Login").WinButton("CANCEL").Click elseif Dialog("Login").Dialog("Flight Reservations").WinButton("OK").exist then Dialog("Login").Dialog("Flight Reservations").WinButton("OK").Click datatable.Value(3)= "Please enter password" Dialog("Login").WinButton ("CANCEL").Click else Window("Flight Reservation").Move 309,146 datatable.ExportSheet "C:\Raj\Result.xls" ,1 Window("Flight Reservation").Close End If I want to capture the Message string from Dialog("Login").Dialog("Flight Reservations" Also pls let me know if this is the right way to do the script for login. Pls provide some script for login Flight.exe Thanks in advance Raj Dhiman