IS standard check point is very important than the other
check points in QTP? If so why?
Answer Posted / p
Till now, I have seen six project's Code(QTP-Vbscript).
They never use any type of check points. So I can't imagine
how people use cp.
I feel,the main drawback is, Test Engineers can't know what
is going on inside of the check point related code, because
qtp hides the code which cannot be accesible by TE. this is
my opinion.
May be the usability may varies depends on certain
scenarios.
Patil
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How many add-ins comes by default with quicktest professional?
Name the properties you would use for identifying a browser and page when using descriptive programming?
How many scripts did you have?
What are the flaws in water fall model and how to overcome it?
What is the difference between a Function and Procedure in QTP?
What is data driver in qtp?
If the objects hierarchy is changing from build to build, then how you will handle that condition?
Explain data driven framework?
What is Cross browser testing? Does UFT support it?
When ‘option explicit’ keyword is used in qtp?
What is active screen?
how to create flat file datasubmission in qtp
How may types of defects identify application or your currently working application?pls give me answer..
Is the qtp course will help to create a virtual object?
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