Please tell me the steps to record the test in Analog
recording mode in QTP version 9.2???
Answers were Sorted based on User's Feedback
Answer / hima7
it is a special recording mode provided by qtp.which is
used for recording the continuous operations.
navigation:
1.keep the tool under recording mode.
2.activate the menu item automation.
3.select the option analog recording mode
4.select one of the following option
record relative to the screen
record relative to the following screen
5.if second option is selected specify the window title
6.click on the start analog recording button
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ana
Description: Analog Recording records mouse movement and
keyboard inputs, it is in binary format.
Analog Recording Mode can be:
1. With Respect to Desktop
2. With Respect to Application
Recording:
1. First the recording should be started with Standard
Recording Mode
2. Secondly select the Analog Recording Mode option
3. Select the option relative to Desktop or Application
4. Select Start Analog Recording button
| Is This Answer Correct ? | 0 Yes | 0 No |
RECENTLY I PLACED IN QTP..HOW TO IMPROVE VB SCRIPTS KNOWLEDGE? IAM STRUGGING TO WRITE THE AUTOMATION SCRIPTS? ANY BODY TELL HOW TO IMPROVE QTP SCRIPT SKILLS?
when i am running login page i got test run error? Please give me the script to handle run time exceptions. It's urgent for me.
How can we write script for a .net application in QTP? Can we use VB Script for .net application.
What are the key elements available in test result window?
What is object & properties (in QTP)
What is iteration?
Both static and dynamic arrays are handled by the vb script. Is it true?
How can we conduct U-I Testing by using QTP??????
hi.what is exactly mean by real time frame work? every institute teach Framework is nothing but having 6 to 7 folders..and save repositories functions keywords and scripts? this is enough or not? can we beleive?
suppose by navigation i went from 1st page to 5th page write a script for coming from any page to the 1st page abd by executing where the page may be . it will come to 1st page give the code using gmail. give me mail id so that i can under this answer with out any doubt
How can we retrieve the Bug Ids which are open&Reopen in status through QTP scrit?Please find the script which i tried... Dim objBugFactory, objBug Dim BugId Set TDConnection = QCUtil.TDConnection Set objBug = TDConnection.BugFactory If QCUtil.IsConnected then Reporter.ReportEvent 0, "Connected", "Connected to server: " + QCUtil.TDConnection.ServerName + chr (13) +"Project: " + QCUtil.TDConnection.ProjectName + chr (13) + "Domain: " + QCUtil.TDConnection.DomainName Reporter.ReportEvent 0, "Current time on server is","==>" & TDConnection.ServerTime Else Reporter.ReportEvent 1, "Not connected", "Not connected to Quality Center" End If If mybug.Status="Open" Then BugId=mybug.DefectId MsgBox BugId End If 'OR**********************************--------------------- -----********************************** If Bug_Fields("BG_STATUS").Value ="Open" Or "Re Open"Then BugId=Bug_Fields("BG_BUG_ID").Value MsgBox BugId End If
Hi All, I am using QTP for one of the Desktop application which uses Keyboard inputs like 'Tab ,F7 etc' and also mouse (Click). After recording when i am running the Script ,it is not able to recognize the keyboard inputs like F7,Tab and mouse Click because of which either i have to skip that part or manually do the inputs. Please answer how can i make script more flexible so that it will recognize both keyboard and mouse operations.