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 Avo Assure Client to fetch all the views of the ListView and save the result in the output variable.

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}. The execution status “True”/ “False” will be stored in the second output variable (if specified).

Keyword: GETLISTCOUNT

Description: This keyword or action instructs Avo Assure Client to fetch the count of views within the ListView and save the result in the output variable.

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 Avo Assure Client to get multiple views from the ListView based on indices.

Note: Only numerical values are allowed. The 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 Avo Assure Client to fetch the selected views from the Listview and save the result in the output variable.

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}. The execution status “True”/ “False” will be stored in the second output variable (if specified).

Keyword: GETVIEWBYINDEX

Description: This keyword or action instructs Avo Assure Client to fetch the view value from the listview using the index specified in the input and save the result in the output variable.

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 Avo Assure Client to select multiple views from the listview based on the indices specified.

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 Avo Assure Client to select multiple views from the listview based on text provided in the input.

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 Avo Assure Client to select the view from the Listview based on the index.

Note: Only numerical values are allowed. The 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 Avo Assure Client to select the view from the Listview based on the text provided in the input.

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 Avo Assure Client to verify the user-provided input with all the views in the Listview.

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 Avo Assure Client to verify the user-provided input count with the total number of views in the List.

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 Avo Assure Client to compare the user-provided input with the selected Views in the List.

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).

Last updated