Answer Posted / aditya
Using sendkey method we can do all the keyboard functions in qtp.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
what is stepin & stepout?
Step 3&4 are repeated until an the object in recognised uniquely.
What is exact meaning of Database Checkpoint in QTP 9.2 and what are the different types of the database check points?
Can we Test Welcome Screens and Process Images with QTP
i have doubt suppose iam purly working in manual, when i will get work to do on sql and performence testing? pls any one clarify doubt?
What is method name to compare two XML files.
How qtp recognizes the object?
how to post xml data from QTP scripts to any application?
Hi,Sudhanandareddy plz forword framework and ppts for QTP to me. This is my mail id: ranjith_99reddy@yahoo.co.in (your contact number also)
In QA Testing when do you use Loadrunner vs QTP? What are the main differences between those two tools? Explain the purpose with real world scenario examples...In advance thank you!!!
What is the difference between Keyword Driven test and Data Driven test?
how to download mercury qtp9.2 ny internet ?
What is the default add-ins in qtp?
Explain different type of event trigger option.
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