How many check points are there in QTP and what are they?
Answers were Sorted based on User's Feedback
Answer / uday kumar_anem
QTP provides the following check points:
1. Standard Checkpoint
a. Image checkpoint
b. Table checkpoint
c. Page checkpoint
2. Bitmap checkpoint
3. Text checkpoint
4. Text-Area checkpoint
5. DB checkpoint
6. Accessibility checkpoint
7. XML checkpoint
a. Web page
b. File
| Is This Answer Correct ? | 21 Yes | 3 No |
Answer / naren
QTP supports 9 types of check points.
1.Standard check point.
2.Image check point.
3.Bitmap check point.
4.Page check point.
5.Text check point.
6.Text Area check point.
7.Database check point.
8.Accessibility check point.
9.XML check point.
| Is This Answer Correct ? | 16 Yes | 5 No |
Answer / santhosh
QTP supports 9 types of check points.
1.Standard check point.
2.Image check point.
3.Bitmap check point.
4.Page check point.
5.Text/Text Area check point.
6.Table check point.
7.Database check point.
8.Accessibility check point.
9.XML check point.
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / manthya
QTP PROVIDES THE FOLLOWING CHCEK
POINTS.
1.STANDARD CHECK
POINT A.PAGE CHECK
POINT B.IMAGE CHECK
POINT C.TABLE CHECK
POINT 2.BITMAP CHECK
POINT 3.TEXT CHECK
POINT 4.TEXT AREA CHECK
POINT 5.DB CHECK
POINT 6.ACCESSIBILITY
CHECK POINT 7.XML CHECK
POINT A. WED
PAGE B.FILE
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / jidesh
QTP supports 9 types of check points.
1.Standard check point.
2.Image check point.
3.Bitmap check point.
4.Page check point.
5.Text check point.
6.Text Area check point.
7.Database check point.
8.Accessibility check point.
9.XML check point.
| Is This Answer Correct ? | 3 Yes | 4 No |
What are the different recording modes?
What is the Diff between Image check-point and Bit map Check point?
qtp script for recording and running the application.need script for short cut keys like f3,f4 etc.how to write script for recording?
write code to read and write data from file?
CAN I CALL A FUNCTION IN ACTION.IF YES PLEASE HELP ME
examples of user definied functions? how to write user defined functions in qtp9.2?
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
what testing activities u may want to automate?
What is the virtual object?
what are the utilities and drivers
Is it mandatory to know abt regular expression in descriptive programming
What will be the output of the statements below? On error Resume Next Sum 100/0 if Sum= 0 Then msgbox "Pass" else msgbox "Fail" End If