Get Cell Value
This is a pre-built Action located under the captured table element. The functionality of this Action in Avo Assure is to extract the value of a specific cell from the captured table. The extracted value is stored in the given dynamic variable for further use during test execution.
Syntax
Input Value: <Row>;<Column>
<Row> (Required)
Provide the row number of the table cell you want to fetch.
<Column>
(Required)
Provide the column number of the table cell you want to fetch.
Output Value: <Dynamic Variable>;<Dynamic Variable>(Optional)
<Dynamic Variable> (Required)
This dynamic variable stores the extracted cell value.
<Dynamic Variable> (Optional)
This dynamic variable stores the status as True or False.
Example: Extracting the Text or Data from a Specific Table Cell
In this example, we explain how to retrieve data from a particular cell in a table.
Action: Get Cell Value
Input Value: 2;2
The first argument (2) specifies the row number.
The second argument (2) specifies the column number.
Output Value: {Value}
The retrieved cell content (e.g., 23455) is stored in this {Value} dynamic variable.
If a second output variable is provided, the action returns the status as True/False:
True: If the cell value is retrieved successfully.
False: If the cell value is not retrieved successfully.
Logical Explanation: The Get Cell Value action fetches the value from the Input Value column (2;2). This action identifies the table cell at row 2 and column 2, retrieves the value from that cell (e.g., 23455), and stores it in the {Value} variable.

Last updated
Was this helpful?