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.
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.
Syntax
Input Value: <row>;<col>
<row> (Required)
Provide the row number of the table cell you want to fetch the tooltip text from.
<col> (Required)
Provide the column number of the table cell you want to fetch the tooltip text from.
Output Value: <Dynamic Variable>;<Dynamic Variable>(Optional)
<Dynamic Variable> (Required)
This dynamic variable stores the extracted tooltip text from the table cell.
<Dynamic Variable> (Optional)
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.

Last updated