Versions Compared

Key

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

Below mentioned are the action keywords with their example usage.The string handling keywords are helpful to perform operations on string.

Suppose you have two separate strings and you wish to use the concatenated value in a specific text field.

Structure :

launchApp <parameter>

<steps to execute>

concatAndCopyString <parameter>

<further steps to execute>

Action

Parameters

Example Usage

changeToUpperCaseAndStore

Web, Mobile


To convert the string into uppercase and store into some variable.

Param 1 : String to convert
Param 2 : Variable name to store the converted value

Example :

changeToUpperCaseAndStore : <String : BQURIOUS> <In Variable : bqVariable>

Converts BQURIOUS into lower case and store into variable bqVariable

changeToLowerCaseAndStore

Web, Mobile


To convert the string into lowercase and store into some variable.

Param 1 : String to convert
Param 2 : Variable name to store the converted value

Example :

changeToLowerCaseAndStore : <String : bqurious> <In Variable : bqVariable>

Converts bqurious into upper case and store into variable bqVariable

concatAndCopyString

Web, Mobile


To concatenate two strings (mentioned in Parameter 1 and Parameter 2) and store the result in the specified variable(mentioned in Variable 3).

Param 1 : First string to concat
Param 2 : Second string to concat
Param 3 : Variable name to store the concatenated value

Example :

concatAndCopyString : <First String : Welcome > <Second String : to Bqurious> <In Variable : bqVariable>

Concatenates string Welcome & to Bqurious then stores the resultant value in variable bqVariable.

...