verifyText

This is a pre-built Action located under the captured table element. The functionality of this Action in Avo Assure is to verify whether the text present in the textbox within the specified table cell matches the text provided in the input field. The result is stored in the given dynamic variable for further use during test execution

Syntax

Input Value: <Row>;<Col>;<Object Type>;<Index>;<Text>

Argument
Description

<Row> (Required)

Provide the row number of the specified table cell.

<Col> (Required)

Provide the column number of the specified table cell.

<Object Type> (Required)

Provide the type of object within the input value field.

<Index> (Required)

Provide the index of the object within the input value field.

<Text> (Required)

Provide the text you want to verify against the value present in the table cell.

Output Value: <Dynamic Variable>(Optional);<Dynamic Variable>(Optional)

Argument
Description

<Dynamic Variable>(Optional);<Dynamic Variable>(Optional)

Both dynamic variable stores the status as True or False.

Example: Verifying the Text Inside a Textbox in a Table Cell

In this example, we explain how to verify whether the text entered in a textbox located within a specific cell of a captured table matches the expected value.

  • Action: verifyText

  • Input Value: 2;4;textbox;1;Accountant

    • The first argument (2) specifies the row number.

    • The second argument (4) specifies the column number.

    • The third argument (textbox) specifies the type of object present inside the cell.

    • The fourth argument (1) specifies the object index.

    • The fifth argument (Accountant) specifies the expected value to be verified.

  • Output Value: {Status}

  • The verification result is stored in the {Status} dynamic variable, with the following possible values:

    • True: If the text inside the textbox matches the expected value.

    • False: If the text inside the textbox does not matches the expected value.

  • Logical Explanation: The verifyText action reads the details from the Input Value column (2;4;textbox;1;Accountant). It identifies the table cell located at row 2 and column 4, retrieves the text from the textbox object present in that cell, and compares it with the expected value (Accountant). The result of this comparison (True) is stored in the {Status} variable.

Last updated