# Get Tool Tip text Of Cell

This is a pre-built Action located under the captured table element. The functionality of this Action in Avo Assure is to retrieve the tooltip text from the specified table cell. The result is stored in the given dynamic variable for further use during test execution.

{% hint style="info" %}
**Note**: Tooltip text is a short description or piece of information that appears when the mouse pointer is hovered over an element, such as a button, link, or table cell. It helps explain the purpose of the element or provides additional details.
{% endhint %}

## Syntax

**Input Value**: `<row>;<col>`

| Argument                    | Description                                                                          |
| --------------------------- | ------------------------------------------------------------------------------------ |
| <p>\<row><br>(Required)</p> | Provide the row number of the table cell you want to fetch the tooltip text from.    |
| <p>\<col><br>(Required)</p> | Provide the column number of the table cell you want to fetch the tooltip text from. |

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

| Argument                                 | Description                                                                  |
| ---------------------------------------- | ---------------------------------------------------------------------------- |
| <p>\<Dynamic Variable><br>(Required)</p> | This dynamic variable stores the extracted tooltip text from the table cell. |
| <p>\<Dynamic Variable><br>(Optional)</p> | This dynamic variable stores the status as **True** or **False**.            |

### Example: Fetching the Tooltip Text from a Specific Table Cell

In this example, we explain how to retrieve the tooltip text from a particular cell in a table.

* **Action:** Get Tool Tip Text Of Cell
* **Input Value:** 2;3
  * The first argument (2) specifies the row number.
  * The second argument (3) specifies the column number.
* **Output Value:** {Text}
  * The extracted tooltip text (e.g Enter Value) is stored in the **{Text}** dynamic variable.
  * If a second output variable is provided, the action returns the status as **True** or **False**:
    * **True**: If the tooltip text is retrieved successfully.
    * **False**: If the tooltip text is not retrieved successfully.

**Logical Explanation:**\
The **Get Tool Tip Text Of Cell** action takes the value from the **Input Value** column (**2;3**). It identifies the table cell located at row 2 and column 3, extracts the tooltip text associated with that table cell. The   extracts tooltip text (e.g Enter Value) is and stores it in the **{Text}** variable.

<figure><img src="/files/p6Qcxsn2NTXfsHXehTUX" alt=""><figcaption></figcaption></figure>


---

# 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/get-tool-tip-text-of-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.
