0 votes
in QuickTest Professional (QTP) by

In QTP explain what is crypt object

1 Answer

0 votes
by
Crypt object in QTP is used to encrypt a strings.

Syntax

Crypt.Encrypt(“madanswer”)

Example :

In this example, value in pwd variable is encrypted using the Crypt. Encrypt method.

Then this encrypted value is entered into editbox.

pwd= “myvalue”

pwd = Crypt.Encrypt (pwd)

Browser(“myb”).WinEdit (“pwd”). SetSecure pwd

Related questions

+1 vote
asked Jan 16, 2020 in QuickTest Professional (QTP) by JackTerrance
0 votes
asked May 8, 2020 in QuickTest Professional (QTP) by Robindeniel
...