Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Suppose you have created a workflow that re-uses a component & you pass the values as stored variable before calling that particular component.

Ex.

<copyStringValueTo> -------------- Suppose the string String1 is stored in variable var

<component1> -------------- Uses the value stored in the variable var from copyStringValueTo keyword

<steps to execute>

<component2>

<copyStringValueTo> -------------- Suppose the string String2 is stored in variable var

<component1> -------------- Uses the value stored in the variable var from copyStringValueTo keyword

Keyword

Component

Keyword

Object

Data

copyStringValueTo

String to Store : String1 (data type : Fixed Encrypted)
In variable : var
Left Boundary (Optional) :
Right Boundary (Optional) :

Component 1

setValue

username

Value : username (data type : Stored Variable)
Execution Mode (Optional) :

setValue

password

Value : var (data type : Stored Variable)
Execution Mode (Optional) :

<Steps to execute>

Component 2

verifyElementVisible

Login

copyStringValueTo

String to Store : String2
In variable : var
Left Boundary (Optional) :
Right Boundary (Optional) :

Component 1

setValue

username

Value : username (data type : Stored Variable)
Execution Mode (Optional) :

setValue

password

Value : var (data type : Stored Variable)
Execution Mode (Optional) :

When you execute such test, the encrypted value is not displayed as encrypted while execution.

...