Table

Keyword: CELLCLICK

Description: This keyword or action instructs Avo Assure Client to perform a click operation on the table cell given in the input.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

cellClick

<row number>; <column number>; <Object_Type_Input>; <Index>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Note: Input Syntax-

S. No.

Object Type

Object_Type_Input

1

Button

button

2

Image

img

3

Checkbox

checkbox

4

RadioButton

radiobutton

5

Link

link

6

Textbox

textbox

7

Div

div

8

Span

span

Object_Type_Input: Object type of the cell for which click action is to be performed. Index: Index of the object in the cell. Index starts with 1 (default index).

For example, If there are two buttons in a table cell (2, 3), to perform the click operation on the second button, the user should provide input in the following format- 2; 3; button; 2

Find the snippet of the keyword below:

In the above example, after the test case debug, it will perform a click operation on the table cell given in the input, and the execution status “True”/ “False” will be stored in variable {click}.

Keyword: GETCELLTOOLTIP

Description: This keyword or action instructs Avo Assure Client to fetch the tooltip text of the table cell and save the result in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getCellToolTip

<row_num>; <col_num>

{Variable}; {Status}

  • Text

  • Static Values

  • Dynamic Variables

Note: If multiple objects have a tooltip defined, at present, only the tooltip of the first object of the cell will be fetched.

Find the snippet of the keyword below:

In the above example, after the test case debug, the operation will fetch the tooltip text of the table cell and store it in variable {gettooltip}. The execution status “True”/ “False” will be stored in variable {gettool}.

Keyword: GETCELLVALUE

Description: This keyword or action instructs Avo Assure Client to fetch the value present in the specified cell of the table and save the result in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getCellValue

<Row>; <Column>

{Variable}; {Status}

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, it fetches the value present in the specified cell of the table and saves it in variable {get}. The execution status “True"/ “False” will be stored in variable {getCell}.

Keyword: GETCOLNUMBYTEXT

Description: This keyword or action instructs Avo Assure Client to fetch the column number of the given input text and save the result in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getColNumByText

<Input Text>

{Variable}; {Status}

  • Text

  • Static Values

  • Dynamic Variables

Note:

  1. If multiple matches are found, the user should display/ use the values using an array. For Ex: {Variable[0]};{Variable[1]}

  2. This keyword requires an exact match. Due to browser rendering, if the value contains trailing/leading spaces, the keyword will fail.

  3. This keyword will pass only if the input value matches the values present in the application under test.

  4. Users can get the row/column number using partial/complete text.

Find the snippet of the keyword below:

In the above example, after the test case debug, it fetches the column number of the given input text and stores it in {ColByText}, and the execution status “True”/ “False” will be stored in variable {colbyText_Status}.

Keyword: GETCOLUMNCOUNT

Description: This keyword or action instructs Avo Assure Client to fetch the count of the total number of columns present in the table and save the result in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getColumnCount

NA

{Variable}; {Status}

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, it gives the total number of columns present in the table and stores it in {colCount}, and the execution status “True”/ “False” will be stored in variable {column}.

Keyword: GETINNERTABLE

Description: This keyword or action instructs Avo Assure Client to fetch the xpath of the inner table (dynamic tables) and save it as the reference variable in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getInnerTable

<row_num>; <col_num> (optional)

{Variable}; {Status}

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, it saves the xpath of the inner table in the output variable {innerTable}.

Note: This output variable can be further referenced, and operations on the inner table can be performed by passing this output variable as the input in @Object keywords.

Keyword: GETROWCOUNT

Description: This keyword or action instructs Avo Assure Client to fetch the count of the total number of rows present in the table and save the result in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getRowCount

NA

{Variable}; {Status}

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, it gives the total number of rows present in the table and stores it in {rowCount}, and the execution status “True”/ “False” will be stored in variable {row}.

Keyword: GETROWNUMBYTEXT

Description: This keyword or action instructs Avo Assure Client to fetch the row number of the given input text and save the result in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getRowNumByText

<Input Text>

{Variable}; {Status}

  • Text

  • Static Values

  • Dynamic Variables

Note:

  1. If multiple matches are found, the user should display/ use the values using an array. For Ex: {Variable[0]};{Variable[1]}

  2. This keyword requires an exact match. Due to browser rendering, if the value contains trailing/leading spaces, the keyword will fail.

  3. This keyword will pass only if the input value matches the values present in the application under test.

  4. Users can get the row/column number using partial/complete text.

Find the snippet of the keyword below:

In the above example, after the test case debug, it fetches the row number of the given input text and stores it in {rowbyText}, and the execution status “True”/ “False” will be stored in variable {rowbyText_Status}.

Keyword: GETSELECTED

Description: This keyword or action instructs Avo Assure Client to fetch the selected value from the dropdown/list in the table cell.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getSelected

<row_num>; <col_num>; <dropdown/ listbox>; <elementIndex>

{Variable};{Status}

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, it fetches the selected value from the dropdown/list, which is in the table cell, and stores it in variable {getselected}, and the execution status “True”/ “False” will be stored in variable {Sel}.

Keyword: GETSTATUS

Description: This keyword or action instructs Avo Assure Client to fetch the radio button/checkbox status, which is in the table cell.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getStatus

<row_num>; <col_num>; <object_type>; <elementIndex>

{Variable}

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, the operation will fetch the checkbox status and store it in variable {getStatus}. The execution status “True”/ “False” will be stored in variable {Status}.

Keyword: MOUSECLICK

Description: This keyword or action instructs Avo Assure Client to perform a mouse click on the specified cell in the input for the table object.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

mouseClick

<Row>; <Column>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, the object in the specified cell is clicked, and the execution status “True”/ “False” will be stored in variable {MouseClick}.

Keyword: SELECTBYABSOLUTEVALUE

Description: This keyword or action instructs Avo Assure Client to select the value from the dropdown based on the text provided in the input for dropdown/list, which is in the table cell.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

selectByAbsoluteValue

<row_num>; <col_num>; <dropdown/ listbox>; <elementIndex>; <keywordInput (value/option to be selected, exact text)>

{Variable}; {Status}

  • Text

  • Static Values

  • Dynamic Variables

Note:

  1. This keyword requires an exact match. Due to browser rendering, if the value contains trailing/leading spaces, the keyword will fail.

  2. This keyword will pass only if the input value matches the values present in the application under test.

  3. This keyword selects the values given in the input. To see selected values, the tester should use the “getSelected” keyword after the selected keyword.

Find the snippet of the keyword below:

In the above example, after the test case debug, it selects the value from the dropdown based on the text provided in the input, which is in the table cell, and the execution status “True”/ “False” will be stored in variable {SelText}.

Keyword: SELECTVALUEBYINDEX

Description: This keyword or action instructs Avo Assure Client to select the options based on the index value specified in input for dropdown/list.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

selectValueByIndex

<row_num>; <col_num>; <dropdown/ listbox>; <elementIndex>; <keywordInput>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Note: Only numerical values are allowed in input. The index starts with “0,” which will be the first value from the dropdown/list.

Find the snippet of the keyword below:

In the above example, after the test case debug, it selects the options based on the index value specified in input for dropdown/list, and the execution status “True”/ “False” will be stored in variable {index}.

Keyword: SELECTVALUEBYTEXT

Description: This keyword or action instructs Avo Assure Client to select the options based on the text provided in input for dropdown/list, which is in the table cell.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

selectValueByText

<row_num>; <col_num>; <dropdown/ listbox>; <elementIndex>; <keywordInput>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, it selects the value from the dropdown based on the text provided in input, and the execution status “True”/ “False” will be stored in variable {text}.

Keyword: VERIFYCELLTOOLTIP

Description: This keyword or action instructs Avo Assure Client to verify if the tool tip text is present in the specified table cell and save the result in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

verifyCellToolTip

<row_num>; <col_num>; <inputValue>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debugs, it verifies if ‘bank’ is the tooltip text in table cell (2, 1), and the execution status “True”/ “False” will be stored in variable {verifytool}.

Keyword: VERIFYCELLVALUE

Description: This keyword or action instructs Avo Assure Client to verify if the input value is present in the specified table cell.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

verifyCellValue

<Row>; <Column>; <Input Value>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, it verifies if the input value is present in the specified table cell, and the execution status “True”/ “False” will be stored in variable {verify}.

Keyword: VERIFYTEXTEXISTS

Description: This keyword or action instructs Avo Assure Client to verify if the text given in the input is present in the table.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

verifyTextExists

<Input Value>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, it verifies if the given text input is present in the table, and the execution status “True”/ “False” will be stored in variable {textExist}.

Keyword: SETTEXT

Description: This keyword or action instructs Avo Assure Client to enter text in the textbox in the table cell.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

setText

<row_num>; <col_num>; <textbox>; <Element_Index>; <Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Note: The “sendvalue” keyword can be used as an alternative.

Find the snippet of the keyword below:

In the above example, after the test case debug, the operation will set the provided text, and the execution status “Fail”/ “Pass” will be stored in variable {SetTextTable}.

Keyword: SENDVALUE

Description: This keyword or action instructs Avo Assure Client to send individual keystrokes to the textbox in the table cell.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

sendValue

<row_num>; <col_num>; <textbox>; <Element_Index>; <Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, the text will be entered in the specified textbox, and the execution status “Fail”/ “Pass” will be stored in variable {SendValueTable}.

Keyword: SETSECURETEXT

Description: This keyword or action instructs Avo Assure Client to accept an encrypted text and pass the decrypted value into the application’s textbox, which is in the table cell.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

setSecureText

<row_num>; <col_num>; <textbox>; <Element_Index>; <Encrypted Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Note: In order to provide encrypted text as input to the setSecureText keyword, the user should encrypt the required text using “AES Encryption” from the tool encryption utilities.

Find the snippet of the keyword below:

In the above example, after the test case debug, the decrypted text will be entered in the specified textbox, and the execution status “Fail”/ “Pass” will be stored in variable {SecuredText}.

Keyword: SENDSECUREVALUE

Description: This keyword or action instructs Avo Assure Client to accept an encrypted text and send the individual keystrokes to the application’s textbox, which is in the table cell.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

sendSecureValue

<row_num>; <col_num>; <textbox>; <Element_Index>; <Encrypted Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Note: In order to provide encrypted text as input to the sendSecureValue keyword, the user should encrypt the required text using “AES Encryption” from the tool encryption utilities.

Find the snippet of the keyword below:

In the above example, after the test case debug, the decrypted text will be entered in the specified textbox, and the execution status “Fail”/ “Pass” will be stored in variable {sendSecureValueTable}.

Keyword: CLEARTEXT

Description: This keyword or action instructs Avo Assure Client to clear the text from the textbox that is in the table cell.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

clearText

<row_num>; <col_num>; <textbox>; <Element_Index>

(Optional)

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, it clears the text from the textbox, and the execution status “Fail”/ “Pass” will be stored in variable {ClearTextTable}.

Keyword: GETTEXT

Description: This keyword or action instructs Avo Assure Client to get the text from the textbox in the table cell and save the results in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getText

<row_num>; <col_num>; <textbox>; <Element_Index>

{Variable}; {Status}

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, the text of the textbox will be fetched and stored in variable {getTextTable}, and the execution status “Fail”/ “Pass” will be stored in variable { getTextStatus}.

Keyword: GETTEXTBOXLENGTH

Description: This keyword or action instructs Avo Assure Client to get the maximum text box length defined by the developer of the textbox, which is in the table cell, and save the result in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getTextboxLength

<row_num>; <col_num>; <textbox>; <Element_Index>

{Variable}; {Status}

NA

Note: This keyword fetches the maximum number of supported characters by the text box, not the user input character length.

Find the snippet of the keyword below:

In the above example, after the test case debug, the maximum length of the textbox will be fetched and stored in variable {len}, and the execution status “Fail”/ “Pass” will be stored in variable {Status}.

Keyword: VERIFYTEXT

Description: This keyword or action instructs Avo Assure Client to verify if the text present in the textbox (which is in the table cell) is the same as that present in the input field.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

verifyText

<row_num>; <col_num>; <textbox>; <Element_Index>; <Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, the text provided will be verified, and the execution status “Fail”/ “Pass” will be stored in variable {verifyTextTable}.

Keyword: VERIFYTEXTBOXLENGTH

Description: This keyword or action instructs Avo Assure Client to verify the maximum length of the text box in the table cell to the value that is provided in the input field.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

verifyTextboxLength

<row_num>; <col_num>; <textbox>; <Element_Index>; <Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, the maximum length of textbox is verified with the input provided, and the execution status “Fail”/ “Pass” will be stored in variable {verifyLenTable}.

Keyword: DOUBLECELLCLICK

Description: This keyword or action instructs Avo Assure Client to perform a double-click operation on the table cell given in the input.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

doubleCellClick

<row number>; <column number>; <Object_Type_Input>; <Index>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, it will perform a double-click operation on the table cell given in the input. The execution status “True”/ “False” will be stored in the output variable if provided.

Keyword: SENDSECUREFUNCTIONKEYS

Description: This keyword or action instructs Avo Assure Client to accept an encrypted text and send the individual keystrokes to the application’s textbox within a scraped table.

Following is the syntax for performing the operation on a textbox that exists within a scraped table object:

Keyword

Input Syntax

Output Syntax

Supported Input Formats

sendSecureFunctionKeys

<Row>; <Col>; <ObjectType>; <Index>; <Encrypted Text>

(Optional)

  • Text

  • Static values

  • Dynamic Variables

Note:

In order to provide encrypted text as input to the sendSecureFunctionKeys keyword, the user should encrypt the required text using “AES Encryption” from the tool encryption utilities.

Find the snippet of the keyword below, with input specified by a dynamic variable:

In the above example, after the test case debug, the decrypted text will be entered in the first textbox present at the cell referenced at the 22nd row and 4th column, and the execution status “Fail”/ “Pass” will be stored in variable {output}.

Last updated