Explain Different types of Checkpoints in Quick Test
Professional?
Answer Posted / ramyab.mca@gmail.com
Hai...
A Checkpoint is a confirmation or verification point in
which the value of some property which is expected at a
particular step is compared with the actual value which is
displayed in the application. Based on the expected values
Checkpoints are classified as follows
•Page Checkpoint :
A Standard Checkpoint created for a web page can be called
a Page Checkpoint. It is used to check total number of
links & images on a web page. Page Checkpoints can be used
to check Load Time i.e. time taken to load a web page.
•Bitmap Checkpoint:
It helps a user in checking the bitmap of an image or a
full web page. It does a pixel by pixel comparison between
actual and expected images.
•Image Checkpoint:
It enable you to check properties like source file location
of a web image. Unlike , Bitmap Checkpoint you can not
check pixels(bitmaps) using image checkpoint.
•Text Checkpoint:
It is Used to check expected text in a web-page or
application. This text could be from a specific region of
the application or a small portion of text displayed
•Accessibility Checkpoints:
It verifies compliance with World Wide Web Consortium
(W3C) instructions and guidelines for Web-based technology
and information systems. These Guidelines make it easy for
disabled to access the web.
•Database Checkpoints:
It create a query during record time and database values
are stored as expected values. Same query is executed
during run time and actual & expected values are compared.
•In Table Checkpoint :
Dynamically check the contents of cells of a table (grid)
appearing in your environment. You can also check various
table properties like row height , cell width and so on.
Table Checkpoint is similar to Database Checkpoint
•Using XML Checkpoints:
you can verify XML Data ,XML Schema, XML Data
K,Byeee...
Thanks & Regards
B.Ramyasri
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Please Don't mind .i want in detail the real time process i.e in each document what it contains.
How will you test a keyboard?
What is text check point and text area check point?
How often were they executed?
Hi All, issue is related to handling pop up script generated in IE, and run on mozilla. In App Under Test, when we get the alert pop ups, we just click ok button. if we need to run the same code on mozilla it will not identify . so we will check browser if browser(*).dialog(IE object).exits browser(*).dialog(IE object).winbutton(OK).click else 'by default mozilla browser(*).dialog(mozilla object).page(*).webbutton(OK).CLICK END IF But my qustion is. Do we write the above piece of code where ever we get such kind of pop ups from the application like alert pop up, confirmation pop up.... OR do we have any other alternative way to do this by using any functions in Recovery Scebarios? If Any of u know idea please do help me in this regard. or send answer to kravimb@gmail.com
Do you know how to connect database? Can you tell me the procedures?
can i compare two databases using QTP ?
if mandatory and Assitive propertys are shows same how will u write skript in QTP window
what is meant by function library?Public and private functions in function library? if private functions are applicable for only for the particular test means then y we have to add those to function library?
hi, can u tell me the QTP TEsting process in present real time companies?(beware of this... now a days Recording is not using,, only DP) and don't tell note book answers like step 1 spep2....like this .......post answer with professional skills in simple english words) thank u
How do you script a nested loop in QTP? I am showing a snipet of my code. Any suggestions to help me get this to work would be great appreciated! STEP A - Customer Number: No loop - ISBN: Loop STEP B - Customer Number: Loop - ISBN: Nested Loop Here is the code I am using now. I am using i for the loop and j for the nested loop in STEP B of my script. =========================================== 'CREATE AN ADDITIONAL CUSTOMER Dim myNum, RowNum, RowCnt2, val2, total, i DataTable.ImportSheet "C:\QOE Data - UAT1.xls" ,"Data" ,"Global" RowCnt2 = DataTable.GetRowCount i = 1 DataTable.SetCurrentRow(i) ' Set row to one Do while Not i > RowCnt2 i=i+1 DataTable.SetNextRow MsgBox Datatable.Value("Customer_Num") Msgbox i Msgbox RowCnt2 If Not i > RowCnt2 then val2=datatable.Value("Customer_Num","Global") OracleFormWindow("Sales Order").SelectMenu "File->New" OracleFormWindow("Sales Order").OracleTabbedRegion("Order Information").OracleTextField("Customer Number").SetFocus OracleFormWindow("Sales Order").OracleTabbedRegion("Order Information").OracleTextField("Customer Number").Enter val2 End If 'CREATE SECOND ISBN LIST DataTable.ImportSheet "C:\QOE Data - UAT1.xls" ,"Data" ,"Global" Dim j, RowCnt3, val3 RowCnt3 = DataTable.GetRowCount For j = 1 To RowCnt3 DataTable.SetCurrentRow(i) ' datatable.getSheet("DataTable").setNextRow If Trim(DataTable("ISBN",dtGlobalSheet)) = "" Then j = j - 1 Exit For End If Next 'Define ISBN rows If RowCnt3 <> j Then RowCnt3 = j End If 'Loop through ISBN rows For j = 1 To RowCnt3 DataTable.SetCurrentRow(i) val3 = Datatable.Value("ISBN","Global") msgbox j If j = 1 Then OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item").SetFocus OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item").Enter val3 else If j < 16 Then OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item_"&i).SetFocus OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item_"&i).Enter val3 else If RowCnt1 => 16 Then OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item_15").SetFocus OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item_15").InvokeSoftkey "DOWN" OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item_15").SetFocus OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item_15").Enter val3 end if end if End If Next 'EXIT APP msgbox i loop Browser("Browser").Page("Oracle Applications 11i").Sync Browser("Browser").Close ========================================== It isn't working correctly in my nested loop in STEP B (for ISBN). Any ideas?? Thanks! SBsteve
What is CMMP and CMMH?
There is an built in window application in qtp9.1,i.e.Flight4.0.i want to implement the recovery maneger on it.How can i do this?
What processes will be required to manage updates to the web site's content, and what are the requirements for maintaining, tracking, and controlling page content, graphics, links, etc.?
after click on compose mail how can we attached a file in qtp with vbscript code