Overview

Overview

Welcome to QTP interview questions

Hello software Quality engineers. Welcome to our Software testing world and common QTP(Quick test pro) related technical issues, interview questions etc. . Over 2 years, I am trying to update all possible interview questions in testing area of QTP. With your continuous comments on the topics and suggestions, we are growing day by day.

Wednesday, December 19, 2007

How can I find if a parameter is there in a global sheet?

Val = DataTable(“parameter name”, dtGlobalSheet)
If err.number <> 0 then
Print ‘parameter not exist’
Else
Print ‘parameter exists’
Endif.

DataTable() function returns a value in integer into err.number.

No comments:

Post a Comment