What exactly is the difference among all the three recording
modes.
Answers were Sorted based on User's Feedback
Answer / guest
In whcih u r asking ........WR or QTP???
In QTP there are 3 recording modes
- Normal recording
_ Analog recording
- Lowlevel recording
Normal recording/contextsenstive/Standard-This is the
default recording mode.Records actions for which enduser
performs on standard GUI objects.
Analog recording-Records all mouse operations along with
cordinates of an object.
Low level-In this if Qtp is unable to indetify an
object,irrespective of an environment QTP records actions
performed on an object.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / rashmi
Standard Recording: This mode takes full advantage of Quick
Test's test object model, recognizing the objects in your
application regardless of their location on the screen.
Analog Recording: Enables you to record exact mouse and
keyboard operations your perform on your application. Ex:
Drawing a signature on screen using the Mouse
Lowlevel Recording: Enables you to record on any object in
your application, whether or not QTP recognizes the
specific Object or the specific Operation.
- Use this mode for recording on an environment or on an
object that is not recognized by
QTP.
- Use this mode when you need to record the exact location
of the operation on your application screen.
| Is This Answer Correct ? | 0 Yes | 0 No |
How many types of actions are there in quicktest professional (qtp)?
whenever U using QTP,Test Director, Why we using separate Bug tracking tool?
Hi All, How to get repeated word in string . Thanks Balaji
What are the QTP advantages and disadvantages?
What is the quicktest professional (qtp) testing process?
You have a WebTable in Web application. When you Record a Scenario using QTP, WebTable didn't recognized and also Repository is not having Webtable information. In this case How to find RowCount and Coloumn Count?
Can we do qtp testing without creating objects in Dbject repository? can we do it completely writing code i.e in expert view only. Are there any books for this?
what is runmodes in QTP
Hi, I Need code to click the webbutton inside of webtable. I need to click a particular 'Edit' webbutton inside of webtable. For Example... Having 5 Rows and 10 Columns. 'Edit' webbutton are placed in 10th Column. I need to click the 3rd row 'Edit' button with unique value. Browser("....").Page("...").Frame("...").WebButton("btn_Edit ") I Tried with below code: Set objButton = Browser("...").Page("...").Frame("...").WebTable("...").Chil dItem(3,10, Webbutton,0).Click - Not working this code :( Anyone can help me to sort out this simple issue ???
What is action? How many types of actions are there in qtp?
We are calling Actions in Expert View by using Run Action.but i want to know where we are saving the Actions Scripts.Pls explain??
While writing script using For Next Statement in QTP, I try defining the variable in Lib File I am getting syntax error whereas if I use the variable in script file, the script works fine. Can anyone help me in finding the reason behind this?. E:g Dim intStartRow (Define in Lib File----- say abc.vbs) Dim intRow (If I define this variable in Lib file I am getting Syntax error where as if I define in the script file ---- say xyz.mts the script works fine) IntStartRow=2 For intRow = intStartRow to xlWrksht.UsedRange.Rows.Count ‘Some Code here Next