Table

Keyword: GETCOLNUMBYTEXT

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

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 will pass only if the input value matches the values in the application under test.

  3. The user 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 {col}, and the execution status “True”/ “False” will be stored in variable {c_status}.

Keyword: GETROWNUMBYTEXT

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

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 will pass only if the input value matches the values in the application under test.

  3. The user 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 {row}, and the execution status “True”/ “False” will be stored in variable {r_status}.

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.

Find the snippet of the keyword below:

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

Keyword: GETCOLCOUNT

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.

Find the snippet of the keyword below:

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

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.

Find the snippet of the keyword below:

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

Keyword: VERIFYCELLVALUE

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

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: CLICKCELL

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

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: DOUBLECLICKCELL

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

Find the snippet of the keyword below:

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

Keyword: SELECTROW

Description: This keyword or action instructs Avo Assure Client to select the row given in the input.

Find the snippet of the keyword below:

In the above example, after the test case debug, it will select the row given in the input, and the execution status “True”/ “False” will be stored in variable {select}.

Last updated