# 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>`&#x20;

| Argument                           | Description                                               |
| ---------------------------------- | --------------------------------------------------------- |
| <p>\<Row><br>(Required)</p>        | Provide the row number of the specified table cell.       |
| <p>\<Column><br>(Required)</p>     | Provide the column number of the specified table cell.    |
| <p>\<ObjectType><br>(Required)</p> | Provide the type of object within the input value field.  |
| <p>\<Index><br>(Required)</p>      | 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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.avoautomation.com/avo-assure/actions/web/table-1/double-click-tab-cell.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
