Listview
Last updated
Last updated
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.
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.
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}. The execution status “True”/ “False” will be stored in the second output variable (if specified).
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.
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).
Description: This keyword or action instructs Avo Assure Client to get multiple views from the ListView based on indices.
Keyword | Input Syntax | Output Syntax | Supported Input Formats |
GetMultipleViewsByIndexes | <index1>; <index2>; …;<indexN> | {Variable}; {Status} |
|
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).
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.
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}. The execution status “True”/ “False” will be stored in the second output variable (if specified).
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.
Keyword | Input Syntax | Output Syntax | Supported Input Formats |
GetViewByIndex | <Index Value> | {Variable};{Status} |
|
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).
Description: This keyword or action instructs Avo Assure Client to select multiple views from the listview based on the indices specified.
Keyword | Input Syntax | Output Syntax | Supported Input Formats |
SelectMultipleViewsByIndexes | <Index1>; <Index2>; … etc. | {Variable} |
|
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).
Description: This keyword or action instructs Avo Assure Client 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) |
|
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).
Description: This keyword or action instructs Avo Assure Client to select the view from the Listview based on the index.
Keyword | Input Syntax | Output Syntax | Supported Input Formats |
SelectViewByIndex | <Index Value> | (Optional) |
|
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).
Description: This keyword or action instructs Avo Assure Client 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) |
|
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).
Description: This keyword or action instructs Avo Assure Client 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) |
|
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).
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.
Keyword | Input Syntax | Output Syntax | Supported Input Formats |
VerifyListCount | <Input Value> | (Optional) |
|
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).
Description: This keyword or action instructs Avo Assure Client 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) |
|
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).