Spinner

Keyword: GETALLVALUES

Description: This keyword or action instructs Avo Assure Client to get all the values from the spinner.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

GetAllValues

NA

{Variable}; {Status}

NA

Find the snippet of the keyword below:

For the above keyword, after the test case debug, the tool gets all the values present in the Spinner and stores it in {Values}, and the execution status “True”/ “False” will be stored in the second output variable {GetAllValues}.

Keyword: GETCOUNT

Description: This keyword or action instructs Avo Assure Client to fetch the total number of options in the Spinner.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

GetCount

NA

{Variable}; {Status}

NA

Find the snippet of the keyword below:

For the above keyword, after the test case debug, the tool fetches the number of values present in the spinner and stores it in the variable {Count}, and the execution status “True”/ “False” will be stored in the second output variable {GetCount}

Keyword: GETMULTIPLEVALUESBYINDEXES

Description: This keyword or action instructs Avo Assure Client to fetch multiple values from the Spinner based on indexes.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

GetMultipleValuesByIndexes

<Index_1>; <Index_2>;… etc.

{Variable}; {Status}

  • Text

  • Static Values

  • Dynamic Variables

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 tool fetches the values present in the spinner based on the indices provided. It will store them in {GetMultipleByIndex}, and the execution status “True”/ “False” will be stored in the second output variable (if specified).

Keyword: GETSELECTEDVALUE

Description: This keyword or action instructs Avo Assure Client to fetch the selected value from the Spinner and save it in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

GetSelectedValue

NA

{Variable}; {Status}

NA

Find the snippet of the keyword below:

For the above keyword, after the test case debug, the selected value from the spinner will be fetched and saved in the variable {SelVal}. The execution status “True”/ “False” will be stored in the second output variable (if specified).

Keyword: GETVALUEBYINDEX

Description: This keyword or action instructs Avo Assure Client to fetch the value from the spinner based on the index.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

GetValueByIndex

<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 value of the specified index will be stored in the variable {ValByIndex}, and the execution status “True”/ “False” will be stored in the second output variable (if specified).

Keyword: SELECTVALUEBYINDEX

Description: This keyword or action instructs Avo Assure Client to select the value from the spinner based on the index.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

SelectValueByIndex

<Index Value>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

For the above keyword, after the test case debug, the value will be selected within the spinner based on the index specified, and the execution status “True”/ “False” will be stored in the output variable (if specified).

Keyword: SELECTVALUEBYTEXT

Description: This keyword or action instructs Avo Assure Client to select the value from the spinner based on the text provided in the input.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

SelectValueByText

<Value Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

For the above keyword, after the test case debug, the specified value will be selected from the spinner, and the execution status “True”/ “False” will be stored in the output variable (if specified).

Keyword: VERIFYALLVALUES

Description: This keyword or action instructs Avo Assure Client to verify if all of the input values provided by the user are present in the Spinner.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

VerifyAllValues

<Index_1>; <Index_2>; <Index_3>… etc.

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Note: This keyword will pass only if all the input values match the values present in the application.

Find the snippet of the keyword below:

For the above keyword, after the test case debug, the Value(s) will be verified, and the execution status “True”/ “False” will be stored in the output variable (if specified).

Keyword: VERIFYCOUNT

Description: This keyword or action instructs Avo Assure Client to verify the user-provided input count with the total number of options in the spinner.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

VerifyCount

<Count Value>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

For the above keyword, after the test case debug, the count value will be verified, and the execution status “True”/ “False” will be stored in the output variable (if specified).

Keyword: VERIFYSELECTEDVALUE

Description: This keyword or action instructs Avo Assure Client to compare the user-provided input value with the selected value in the Spinner.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

VerifySelectedValue

<Input_Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Note: This keyword requires an exact match. If the value contains any spaces, the keyword will fail. This Keyword will pass only if the input value matches the value selected in the Spinner.

Find the snippet of the keyword below:

For the above keyword, after the test case debug, the selected value will be verified, and the execution status “True”/ “False” will be stored in the output variable (if specified).

Last updated