Table

Keyword: GETCOLNUMBYTEXT

Description: This keyword or action instructs ICE 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}

  • 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 will pass only if the input value matches the values present 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 ICE 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}

  • 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 will pass only if the input value matches the values present 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 ICE 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}

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, it gives the total number of row 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 ICE 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

GetColCount

NA

{Variable}

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, it gives the total number of column 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 ICE 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}

  • 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 {cell_val} and the execution status “True”/ “False” will be stored in variable {cell_status}.

Keyword: VERIFYCELLVALUE

Description: This keyword or action instructs ICE 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: CLICKCELL

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

Keyword

Input Syntax

Output Syntax

Supported Input Formats

ClickCell

<row number>; <column number>;

(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 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 ICE to perform a double click operation on the table cell given in the input.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

DoubleClickCell

<row number>;<column number>;

(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 and the execution status “True”/ “False” will be stored in variable {d_click}.

Keyword: SELECTROW

Description: This keyword or action instructs ICE to select the row given in the input.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

SelectRow

<row number>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

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