Avo Assure - Master User Guide v23.2.0
Search
⌃K
Comment on page

Listview

Note [Limitations]: “List View†keywords (all) will only work on the List whose list items are selectable i.e. each list item has control to enable selection.

Keyword: GETALLVIEWS

Description: This keyword or action instructs ICE to fetch all the views of the ListView and save the result in the output variable.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
GetAllViews
NA
{Variable}; {Status}
NA
Find the snippet of the keyword below:
For the above keyword, after the test case debug, all views will be fetched according to index name and stored in {allViews} and the execution status “Trueâ€/ “False†will be stored in the second output variable (if specified).

Keyword: GETLISTCOUNT

Description: This keyword or action instructs ICE to fetch the count of views within the ListView and save the result in the output variable.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
GetListCount
NA
{Variable}; {Status}
NA
Find the snippet of the keyword below:
For the above keyword, after the test case debug, the list count of the listview will be fetched and stored in {listCount} and the execution status “Trueâ€/ “False†will be stored in the second output variable (if specified).

Keyword: GETMULTIPLEVIEWSBYINDEXES

Description: This keyword or action instructs ICE to get multiple views from the ListView based on indices.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
GetMultipleViewsByIndexes
<index1>; <index2>; …;<indexN>
{Variable}; {Status}
  • Text
  • Static Values
  • Dynamic Variables
Note: Only numerical values are allowed. Index starts with “0†which will be the first value in the List.
Find the snippet of the keyword below:
For the above keyword, after the test case debug, Multiple views from the listview will be fetched based on the indices specified and stored in {multipleViewsByIndex}. The execution status “Trueâ€/ “False†will be stored in the second output variable (if specified).

Keyword: GETSELECTEDVIEWS

Description: This keyword or action instructs ICE to fetch the selected views from the Listview and save the result in the output variable.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
GetSelectedViews
NA
{Variable};{Status}
NA
Find the snippet of the keyword below:
For the above keyword, after the test case debug, the selected views within the listview will be fetched and stored in {selectedViews} and the execution status “Trueâ€/ “False†will be stored in the second output variable (if specified).

Keyword: GETVIEWBYINDEX

Description: This keyword or action instructs ICE to fetch the view value from the listview using the index specified in the input and save the result in the output variable.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
GetViewByIndex
<Index Value>
{Variable};{Status}
  • Text
  • Static Values
  • Dynamic Variables
Find the snippet of the keyword below:
For the above keyword, after the test case debug, the view will be fetched according to the index specified by the user and stored in {viewByIndex} and the execution status “Trueâ€/ “False†will be stored in the second output variable (if specified).

Keyword: SELECTMULTIPLEVIEWSBYINDEXES

Description: This keyword or action instructs ICE to select multiple views from the listview based on indices specified.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
SelectMultipleViewsByIndexes
<Index1>; <Index2>; … etc.
{Variable}
  • Text
  • Static Values
  • Dynamic Variables
Find the snippet of the keyword below:
For the above keyword, after the test case debug, multiple views will be selected based on the indices specified, and the execution status “Trueâ€/ “False†will be stored in the output variable (if specified).

Keyword: SELECTMULTIPLEVIEWSBYTEXT

Description: This keyword or action instructs ICE to select multiple views from the listview based on text provided in the input.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
SelectMultipleViewsByText
<Index Value>
(Optional)
  • Text
  • Static Values
  • Dynamic Variables
Find the snippet of the keyword below:
For the above keyword, after the test case debug, multiple views will be selected based on the text specified and the execution status “Trueâ€/ “False†will be stored in the output variable (if specified).

Keyword: SELECTVIEWBYINDEX

Description: This keyword or action instructs ICE to select the view from the Listview based on the index.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
SelectViewByIndex
<Index Value>
(Optional)
  • Text
  • Static Values
  • Dynamic Variables
Note: Only numerical values are allowed. Index starts with “0†which will be the first value in the List.
Find the snippet of the keyword below:
For the above keyword, after the test case debug, the View will be selected according to the index provided, and the execution status “Trueâ€/ “False†will be stored in the output variable (if specified).

Keyword: SELECTVIEWBYTEXT

Description: This keyword or action instructs ICE to select the view from the Listview based on the text provided in the input.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
SelectViewByText
<Input Value>
(Optional)
  • Text
  • Static Values
  • Dynamic Variables
Find the snippet of the keyword below:
For the above keyword, after the test case debug, the tab will be selected according to the text provided, and the execution status “Trueâ€/ “False†will be stored in the output variable (if specified).

Keyword: VERIFYALLVIEWS

Description: This keyword or action instructs ICE to verify the user-provided input with all the views in the Listview.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
VerifyAllViews
<Input_Value1>; <Input_Value2>; … etc.
(Optional)
  • Text
  • Static Values
  • Dynamic Variables
Find the snippet of the keyword below:
For the above keyword, after the test case debug, the input list of views specified by the user will be compared with the actual list of views and the result will be the same as that of the execution status. The execution status “Trueâ€/ “False†will be stored in the output variable (if specified).

Keyword: VERIFYLISTCOUNT

Description: This keyword or action instructs ICE to verify the user-provided input count with the total number of views present in the List.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
VerifyListCount
<Input Value>
(Optional)
  • Text
  • Static Values
  • Dynamic Variables
Find the snippet of the keyword below:
For the above keyword, after the test case debug, the list count value will be verified and the execution status “Trueâ€/ “False†will be stored in the output variable (if specified).

Keyword: VERIFYSELECTEDVIEWS

Description: This keyword or action instructs ICE to compare the user-provided input with the selected Views in the List.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
VerifySelectedViews
< Value 1>; <Value 2>;…; <ValueN>
(Optional)
  • Text
  • Static Values
  • Dynamic Variables
Find the snippet of the keyword below:
For the above keyword, after the test case debug, the selected views will be verified and the execution status “Trueâ€/ “False†will be stored in the output variable (if specified).