List

Keyword: DESELECTALL

Description: This keyword or action instructs ICE to deselect all values from the list.

Find the snippet of the keyword below:

In the above example, after the test case debug, all the values will be deselected and the execution status “True”/ “False” will be stored in variable {DeselectAll}.

Keyword: GETMULTIPLEVALUEBYINDEXES

Description: This keyword or action instructs ICE to get multiple values from the list based on index.

Note: Only numerical values are allowed in the 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, the tool fetches the values present in the index and stores them in {GetMulValByIndx} and the execution status “True”/ “False” will be stored in variable {Status}.

Keyword: SELECTALLVALUES

Description: This keyword or action instructs ICE to select all values of the list.

Find the snippet of the keyword below:

In the above example, after the test case debug, all the values will be selected and the execution status “True”/ “False” will be stored in variable {selectAll}.

Keyword: SELECTMULTIPLEVALUEBYINDEXES

Description: This keyword or action instructs ICE to select the value from the list based on index.

Note: Only numerical values are allowed in the 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, the provided index will be selected and the execution status “True”/ “False” will be stored in variable {SelMulValByIndex}.

Keyword: SELECTMULTIPLEVALUEBYTEXT

Description: This keyword or action instructs ICE to select the value from the dropdown based on the text provided in the input.

Find the snippet of the keyword below:

In the above example, after the test case debug, the provided Value(s) will be selected and the execution status “True”/ “False” will be stored in variable {SelMulValByTxt}.

Keyword: SELECTVALUEBYINDEX

Description: This keyword or action instructs ICE to select the value from the dropdown based on index.

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, the provided index_Value will be selected in the dropdown/list and the execution status “True”/ “False” will be stored in variable {SelectIndex}.

Keyword: VERIFYSELECTEDVALUES

Description: This keyword or action instructs ICE to compare the user provided input value with the selected value in the dropdown.

Note:

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

  2. This keyword will pass only if the input values matches with the values selected in the dropdown/list.

Find the snippet of the keyword below:

In the above example, after the test case debug, the selected value will be verifies and the execution status “True”/ “False” will be stored in variable {VerifySelected}.

Last updated