| |
GeekInterview.com > Tech FAQs > QTP
| Print | |
Question: can anybody tell me the purpose of output checkpoints in QTP. how u r testing the text data through text checkpoints. how u r testing text data in the webpage through parameterization. my application is web based application. my requirement is i am retriving the data from the database to webpage. i put text checkpoint on the text, but problem is the parameterization. can anybody help me with code. i will appreciate if anybody can say
|
| July 07, 2009 04:26:27 |
#4 |
| ramu6309 |
Member Since: July 2008 Total Comments: 2 |
RE: can anybody tell me the purpose of output checkpoints in QTP. how u r testing the text data through text checkpoints. how u r testing text data in the webpage through parameterization. my application is web based application. my requirement is i |
The Main purpose of the text checkpoints is to verify the text with the Actual text. You can use checkpoint with parameterisation also.Eg: Suppose there are 100 Rows belongs having Text to verify in your database
TextOnApplication = XYZ
For i = 0 to RowCount-1
If Instr(UCase(Trim((Row(i).Text))) = "XYZ" Then
Log.Message "Text Is Matched"
Else
Next
|
| |
Back To Question | |