Double Click Tab Cell

This is a pre-built Action located under the captured table element. The functionality of this Action in Avo Assure is to perform a double-click operation on the specified table cell based on the input provided. The status of the action is stored in the given dynamic variable for further use during test execution.

Syntax

Input Value: <Row>;<Column>;<ObjectType>;<Index>

Argument
Description

<Row> (Required)

Provide the row number of the specified table cell.

<Column> (Required)

Provide the column number of the specified table cell.

<ObjectType> (Required)

Provide the type of object within the input value field.

<Index> (Required)

Provide the index of the object within input value field.

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

Argument
Description

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

Both dynamic variable stores the status as True or False.

Example 1: Performing a Double-Click on a Table Cell using Row and Column

In this example, we explain how to perform a double-click operation on a specific cell of a captured table.

  • Action: Double Click Table Cell

  • Input Value: 7;2

    • The first argument (7) specifies the row number of the cell.

    • The second argument (2) specifies the column number of the cell.

  • Output Value: {Status}

    • The result of the double-click operation is stored in the {Status} dynamic variable, with the following possible values:

      • True: If the double-click operation is successful.

      • False: If the double-click operation fails or an error occurs.

  • Logical Explanation: The Double Click Table Cell action reads the details from the Input Value column (7;2). It identifies the table cell located at row 7 and column 2, performs a double-click action on the specified cell. The outcome of this operation (True) is stores in the {Status} variable.

Example 2: Performing a Double-Click on a Table Cell using all Parameters

In this example, we explain how to perform a double-click operation on a specific cell of a captured table.

  • Action: Double Click Table Cell

  • Input Value: 7;2;textbox;1

    • The first argument (7) specifies the row number of the cell.

    • The second argument (2) specifies the column number of the cell.

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

    • The fourth argument (1) specifies the object index if multiple objects exist within the same cell.

  • Output Value: {Status}

    • The result of the double-click operation is stored in the {Status} dynamic variable, with the following possible values:

      • True: If the double-click operation is successfully.

      • False: If the double-click operation is not successfully.

  • Logical Explanation: The Double Click Table Cell action reads the details from the Input Value column (7;2;textbox;1). It identifies the table cell located at row 7 and column 2, locates the textbox object inside the cell, and performs a double-click action on it. The outcome of this operation (True) is stores in the {Status} variable.

Last updated