0 votes
in QuickTest Professional (QTP) by

How will you  declare a variable in QTP?

1 Answer

0 votes
by

You declare using a DIM keyword. You assign value to the variable using the SET keyword.

Ex.

Dim temp 'Will declare the temp variable

Set  temp = 20 ' Will assign a value 20 to temp.

Related questions

+1 vote
asked Apr 12, 2020 in QuickTest Professional (QTP) by amita rallin
+1 vote
asked May 29, 2020 in JAVA by anonymous
...