Answer Posted / harsha
we can create instance of QTP by using vbscript like
Set ObjQTP=CreateObject("QuickTest.Application")
ObjQTP.Launch()
ObjQTP.visible="true"
| Is This Answer Correct ? | 31 Yes | 1 No |
Post New Answer View All Answers
Tell me one scenario, the complex functionality you have automated in your project?
What is CMMP and CMMH?
What is the Difference between test object and run time object?
How to start recording using quicktest professional (qtp)?
How do I get the QTP scripts result in xml format by using vb script function?
Explain in brief about the quicktest professional (qtp) automation object model?
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
How QTP support all types of applications (platforms)?
What are the types of properties that quick test learns while recording?
Explain about the test fusion report of quicktest professional (qtp)?
What is QTP testing process?
What is difference between shared and local object repository?
Through array we can execute the testcase how ? give me example
What is contained in the object repository?
who QTP recognizes the object stored in object repository?