Skip to content

Generate Hash Value Of Text Function: gethashvalue

The Get Hash Value Of Text function generates a hash value for the given input. Hashing is useful for data integrity checks, encryption, or validation in automation workflows.

Example Usage: Suppose you want to generate the hash value of the text “Hello User” and store the result in a variable for further verification.

Steps to Configure:

  1. Select Set a Variable Value from the Action dropdown.
  2. In the Element Key field, enter a variable name to store the hash value (e.g., HashResult).
  3. In the Parameter section, click Form and select Functions from the dropdown.
  4. Choose Get Hash Value Of Text from the list of functions.
  5. Provide the input value (e.g., “Hello User”).
  6. Click Save.

Note: While the steps for adding an action command are identical in both views, the display of the steps changes:

scrn-get-hash-value-tabular-view
Tabular View
scrn-get-hash-value-card-view
Card View

Expected Outcome

  • The generated hash value is stored in the specified variable.
  • This hash value can be used in subsequent steps for validation or comparison using the syntax ${VariableName} (e.g., ${HashResult}).

Back To Top