If a button named "CLICK" is recorded in low level recording mode , what will be the values stored for "name" property of that button in object repository ?
2169Object recognition in QTP is based on which model ? a) COM b) DCOM c) DOM d) None of the above
2 10695
Explain the benefits of quick test pro(qtp)?
How can you identify the browser and its information using QTP script?
what is vmodel?advantages and disadvantages of vmodel?
How to use Environment parameterization? Explain with an example.
What are the types of object repositories? Which one is you are using?
What is regular expression?
What is recovery scenario in qtp?
you are recording on "WINDOW 1", say it has a link if you click on that, that leads you to "WINDOW 2". If you do any manipulations on "WINDOW 2" that are automatically updated in to "WINDOW 1". But "WINDOW 1" is currently invisible. But the updations in "WINDOW 1" must also be recorded as a script in QTP. The best Example is if you update your resume in JOB STREET portal it actually happens in other window, but the previous window is automatically updated. Now does QTP help you in this types of situations? Any body can answer this question. please..... Siva
What are test settings and global settings?
Why do we use "Text checkpoint" If we can make use of it in "standard checkpoint" ?
Hi Friends, Im planning to do certifcation in mercury Automation Tool QTP.But I Didnt get any clear details regarding course syllabus, fees, where to approach, and which certification would be useful for the experienced testers? can any one send me the details?
can any one say that where we can download the QTP trail version ??????????
I created 3 actions in test suppose I want to run action 1 in single time, action 2 is 4 time what I do?
whenever U using QTP,Test Director, Why we using separate Bug tracking tool?
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