List
Last updated
Last updated
Description: This keyword or action instructs Avo Assure Client to deselect all values from the list.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
deselectAll
NA
(Optional)
NA
Find the snippet of the keyword below:
In the above example, after the test case debugs, all the values will be deselected, and the execution status “True”/ “False” will be stored in variable {DeselectAll}.
Description: This keyword or action instructs Avo Assure Client to get multiple values from the list based on the index.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getMultipleValueByIndexes
<Index1>; <Index2>; <Index3>…
{Variable}; {Status}
Text
Static Values
Dynamic Variables
Note: Only numerical values are allowed in the input. The index starts with “0,” 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}.
Description: This keyword or action instructs Avo Assure Client to select all list values.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
selectAllValues
NA
(Optional)
NA
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}.
Description: This keyword or action instructs Avo Assure Client to select the value from the list based on the index.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
selectMultipleValueByIndexes
<Index1>; <Index2>; <Index3>…
(Optional)
Text
Static Values
Dynamic Variables
Note: Only numerical values are allowed in the input. The index starts with “0, " 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}.
Description: This keyword or action instructs Avo Assure Client to select the value from the dropdown based on the text provided in the input.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
selectMultipleValueByText
<Text1>; <Text2>; <Text3>…
(Optional)
Text
Static Values
Dynamic Variables
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}.
Description: This keyword or action instructs Avo Assure Client to select the value from the dropdown based on the index.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
selectValueByIndex
<Index_Value>
(Optional)
Text
Static Values
Dynamic Variables
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}.
Description: This keyword or action instructs Avo Assure Client to compare the user-provided input value with the selected value in the dropdown.
Keyword
Input Syntax
Output Syntax
Supported Input Formats
VerifySelectedValues
<Value1>; <Value2>; …; <ValueN>
(Optional)
Text
Static Values
Dynamic Variables
Note:
This keyword requires an exact match. Due to browser rendering, the keyword will fail if the values contain trailing/leading spaces.
This keyword will pass only if the input values match those 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 verified and the execution status “True”/ “False” will be stored in variable {VerifySelected}.