0 votes
in QuickTest Professional (QTP) by

How you can check if parameter exists in Datatable?

1 Answer

0 votes
by

To check whether if parameter exists in data table we will use the code

on error resume next

val=DataTable(“ParamName”, dtGlobalSheet)

if err.number<>0 then

‘Parameter does not exist’

else

‘Parameter exists

end if

...