Textbox

Keyword: CLEARTEXT

Description: This keyword or action instructs Avo Assure Client to clear the text from the textbox.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

clearText

NA

(Optional)

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, it clears the text from the textbox, and the execution status “Fail”/ “Pass” will be stored in variable {Clear}.

Keyword: CLICK

Description: This keyword or action instructs Avo Assure Client to click on the specified text box.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

click

NA

(Optional)

NA

Note: The “Press” keyword can also be an alternative to “Click”.

Find the snippet of the keyword below:

In the above example, after the test case debug, the click operation will be performed on the textbox, and the execution status “Fail”/ “Pass” will be stored in variable {click}.

Keyword: GETTEXT

Description: This keyword or action instructs Avo Assure Client to get the text from the textbox and save the results in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getText

NA

{Variable}; {Status}

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, the text of the textbox will be fetched and stored in variable {getText}, and the execution status “Fail”/ “Pass” will be stored in variable {Get}.

Keyword: GETTEXTBOXLENGTH

Description: This keyword or action instructs Avo Assure Client to get the maximum text box length defined by the developer and save the result in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getTextboxLength

NA

{Variable}; {Status}

NA

Note: This keyword fetches the maximum number of supported characters by the text box, not the user input character length.

Find the snippet of the keyword below:

In the above example, after the test case debug, the maximum length of the textbox will be fetched and stored in variable {len}. The execution status “Fail”/ “Pass” will be stored in variable {Status}.

Keyword: PRESS

Description: This keyword or action instructs Avo Assure Client to click operation on the specified text box.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

press

NA

(Optional)

NA

Note: This keyword is useful where mouse down press operation is involved.

Find the snippet of the keyword below:

In the above example, after the test case debug, the press operation will be performed on the textbox, and the execution status “Fail”/ “Pass” will be stored in variable {press}.

Keyword: SENDVALUE

Description: This keyword or action instructs Avo Assure Client to send individual keystrokes to the textbox.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

sendValue

<Input Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, the text will be entered in the specified textbox, and the execution status “Fail”/ “Pass” will be stored in variable {SendValue}.

Keyword: SETSECURETEXT

Description: This keyword or action instructs Avo Assure Client to accept an encrypted text and pass the decrypted value into the application.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

setSecureText

<Encrypted Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Note: To provide encrypted text as input to the setSecureText keyword, the user should encrypt the required text using “AES Encryption” from the tool encryption utilities.

Find the snippet of the keyword below:

In the above example, after the test case debug, the decrypted text will be entered in the specified textbox, and the execution status “Fail”/ “Pass” will be stored in variable {SecuredText}.

Keyword: SETTEXT

Description: This keyword or action instructs Avo Assure Client to enter text in the textbox.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

setText

<Input Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Note: The “sendvalue” keyword can be used as an alternative.

Find the snippet of the keyword below:

In the above example, after the test case debug, the operation will set the provided text, and the execution status “Fail”/ “Pass” will be stored in variable {SetText}.

Keyword: VERIFYTEXT

Description: This keyword or action instructs Avo Assure Client to verify if the text in the textbox is the same as in the input field.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

verifyText

<Input Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debugs, the text provided will be verified, and the execution status “Fail”/ “Pass” will be stored in variable {verify}.

Keyword: VERIFYTEXTBOXLENGTH

Description: This keyword or action instructs Avo Assure Client to verify the maximum length of the text box to the value provided in the input field.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

verifyTextboxLength

<Input Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, the maximum length of the textbox is verified with the input provided, and the execution status “Fail”/ “Pass” will be stored in variable {verifyLen}.

Keyword: SENDSECUREVALUE

Description: This keyword or action instructs Avo Assure Client to accept an encrypted text and send the individual keystrokes to the application.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

sendSecureValue

<Encrypted Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Note: To provide encrypted text as input to the sendSecureValue keyword, the user should encrypt the required text using “AES Encryption” from the tool encryption utilities.

Find the snippet of the keyword below:

In the above example, after the test case debug, the decrypted text will be entered in the specified textbox, and the execution status “Fail”/ “Pass” will be stored in variable {SecuredValue}.

Last updated