Micro Focus QTP (UFT) Forums
checkpoint using excel data? - Printable Version

+- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums)
+-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP)
+--- Forum: UFT / QTP Beginners (https://www.learnqtp.com/forums/Forum-UFT-QTP-Beginners)
+--- Thread: checkpoint using excel data? (/Thread-checkpoint-using-excel-data)



checkpoint using excel data? - vramu1 - 01-14-2008

Hi,
I need to compare two similar screens (screenA & screenB) data values. I chose data driven methodology. For that, I’m writing ScreenA values into an Excel Sheet. From the same test I want to compare ScreenB values against ScreenA values. How can I check the screenB values using checkpoints?
Any other suggestions to compare two similar screens?
Regards
Ram
Vramu1@gmail.com


RE: checkpoint using excel data? - Ankur - 01-14-2008

You have already done half of the work! Using parameterization, use the values you got from Screen A to compare with the values from Screen B


RE: checkpoint using excel data? - vramu1 - 01-15-2008

I'm getting excel data like
PrCapPrice = currentsheet.cells(intRow, 3)
then I want to check txtCapitalPrice value in ScreenB using checkpoint with above excel value i.e, PrCapPrice.
I'm getting error when I wrote:
Code:
SwfWindow("SuperfitsToolset").SwfEdit("txtCapitalPrice").Check CheckPoint (PrCapPrice)

what i'm doing wrong?