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

Related questions

0 votes
asked Apr 16, 2020 in QuickTest Professional (QTP) by Robindeniel
+1 vote
asked Feb 19, 2021 in Linux by SakshiSharma
...