Get Cell Value
Last updated
Was this helpful?
Last updated
Was this helpful?
This is pre-built Action located under the Table captured from the AUT Element Name, instructs Avo Assure to fetch the value present in the specified cell of the grid and save the result in the dynamic variable.
Input Value: <Row>;<Col>;<header/body>(optional);<left/right>(optional);<row_attr>(optional);<col_attr>(optional)
<Row> (Required)
Specifies the row number or identifier from which to extract the value.
<Column> (Required)
Specifies the column number or identifier from which to extract the value.
<header/body>
(Optional)
Indicates whether the target cell is in the header or body of the table.
<left/right>
(Optional)
Defines the direction in which the system searches for the specified cell.
<row_attr> (Optional)
Attribute-based filter to identify the correct row Example: class='highlighted-row
<col_attr> (Optional)
Attribute-based filter to identify the correct column. Example: data-label='Order Amount'
Output Value:
<Dynamic Variable> (Required)
This variable stores the column number
<Dynamic Variable> (Optional)
This variable stores the status as true or false
Example
Retrieves the value of a specific table cell The Get Cell Value action fetch the value present in the specified cell using the input value format (e.g., 3;2;body). In this case, 2 refers to the row, 4 to the column, and body indicates the section of the table to target. Optional parameters allow specifying direction (left/right) or applying row and column attributes. The retrieved cell content is stored in the {CellValue} variable, while the execution status is stored in the {Status} variable, with the following possible values:
True – if the value is retrieved successfully.
False –if the action fails or an error occurs.