A new version of Qualitia Automation Studio for Web and Mobile 7.2.x is now available. We highly recommend you upgrade. Find more details here.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Next »

SelectItems

This action selects particular item or items from a list. Multiple items for selection can be given only for the list box that has multi-selection property.

Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

item

Enter the name of the item that needs to be selected. Separate multiple items by carat (^) operator. 

No

Array

Example:
SelectItem                                         "England^India^Australia"

Consider a list containing names of countries. If it contains list items "India", "England", "Australia" and the user wishes to select "England", then this action can be used as follows. If an empty data ("" or $NULL$) is passed as the data, the action will be passed only if there exist an item "" in the webList to be selected.


Macro lookup error: excerpt "VerifyExistence" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "VerifyVisibility" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "Click" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "StorePropertyValue" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "SetFocus" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "MouseOver" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "MouseUp" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "ClickAt" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

On this page:


VerifyItemsExist

This action verifies the existence of the objects in the specified list. 

Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

items

Enter the items for which you want too check the existence. Separate multiple items by carat (^) operator. 

Yes

Array

existence

Value of this parameter can be either true or false.

  • Set true if you want to check the object existence.
  • Set false if you want to check the object non-existence. 

Yes

String

Example:
Consider a list containing names of countries "India", "Australia", "England", "South Africa". If the user wishes to verify if India, England, South Africa are in the list, then this action can be used as follows:
VerifyItemsExist            "India^South Africa^England"           "true"

  1. "^" in Qualitia is a delimiter for items in an array.
  2. If an empty data ("" or $NULL$) is passed as the data, the action will passed only if there exist an "" item in the webList.

SelectItemByIndex

This action selects the specified item from the list. Index starts from 1. 

Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

index

Enter the index value of the list item that you want to select. Index starts at 1.

Yes

Integer

Example:
Consider a list containing names of countries. If it contains list items in the order "India", "England", "Australia" and user wishes to select "Australia", then this action can be used as follows:
SelectItemByIndex                         "3"

VerifyItemsInSequence

This action verifies the actual sequence of items in the specified list box with the expected items' sequence.

Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

items

Enter the list of items in expected sequence. Separate multiple items by carat (^) operator. 

Yes

Array


Example:
Consider a list containing names of countries. If it contains list items in the order "India", "England", "Australia" , "SA" then to verify a sequence in the list, this action can be used as follows:

VerifyItemsInSequence                "India^England^Australia^SA"

DeSelectItems

This action deselects the specified selected items from the specified list box. Multiple items for deselection can be given only for the list box that has multi-selection property.

Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

items

Enter the expected list items that are to be deselected from the list box. Separate multiple items by carat (^) operator.

Yes

Array

Example:
Consider a list containing names of countries. If it contains list items in the order "India", "England", "Australia" , "SA" , if the user wishes to deselect "India and Australia", then this action can be used as follows:

DeSelectItems                                 "India^Australia"
(warning) If an empty data ("" or $NULL$) is passed as the data, the action will passed only if there exist an "" item in the webList to be deselected.

VerifySelectedItems

This action verifies the selected items with the expected items list.

Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

items

Enter the list items that are expected to be selected from the list box. Separate multiple items by carat (^) operator.

Yes

Array

Example:
Consider a list containing names of countries. If it contains list items in the order "India", "England", "Australia" , "SA" , if India and England are selected and this needs to be verified, the this action can be used as follows
VerifySelectedItems                                       "India^England"
(warning) If an empty data ("" or $NULL$) is passed as the data, the action will passed only if there exist an "" selected item in the webList.

VerifySize

This action compares the actual number of items (size) from the specified list box with the expected number of items (size).

Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

expectedSize

Enter the expected size of the list box that will be compared with the actual size of the list box.

The data type of this parameter is Numeric.

Yes

String

Example:
If a list contains the items "India","England,"S.A", then to verify its size this action can be used as follows.
VerifyListBoxSize                         "3"


Macro lookup error: excerpt "WaitForObject" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

StoreItems

This action stores all the items from the specified list under the key name. Items are separated by carat (^) operator and can be retrieved using the key name.

Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

key

Enter the key name under which you want to store the items. 

Yes

String

Example:
Consider a list having the items like, Monday, Tuesday, Wednesday.
StoreItems                       "Key"
The items in the key will be stored as Monday^Tuesday^Wednesday.

VerifyNoItemsDuplication

This action verifies that no items are duplicated in the list.

Example:

VerifyNoItemsDulication

Consider a list having the items Monday, Tuesday, Wednesday, Monday

The action will fail because the if the list contains duplicate item "Monday"

StoreSelectedItems

This action stores all the items of a list that are selected under the specified key. Multiple items are stored separated by carat (^) operator. The key value can be retrieved using the key name.

Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

key

Enter the key name under which you want to store the items. 

Yes

String

Example:

StoreSelectedItems                  "selectedItemsKey"

Consider a list having the items Monday, Tuesday, Wednesday, Thursday, Friday. Suppose Tuesday and Friday is selected in the list.

The items in the key will be stored as Tuesday^Friday

SelectItemAndWait

This action selects an item from the list and waits. It waits for the sync time set under the Configuration Settings (Execution) window. If the page loads before reaching the maximum sync time, then the action will stop waiting.

Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

item

Enter the item to be selected from the list.

Yes

String

Example:
Consider a list containing names of countries. If it contains list items "India", "England", "Australia" and the user wishes to select "England", then this action can be used as follows
SelectItemAndWait                      "India"

If an empty data ("" or $NULL$) is passed as the data, the action will passed only if there exist an "" item in the webList.
Webdriver waits for the document to come in ready state. If it is in ready state it is assumed that the page is loaded completely and Webdriver stops waiting. The condition to wait till the document is in ready state and assume that the page is loaded could however not work as expected at all times.

Macro lookup error: excerpt "RightClick" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "VerifyEnability" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "DragandDrop" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "ClickAndWait" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "StoreExistence" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "StoreChildCount-withoutlocator" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "ScrollIntoView" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "ClickJS" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "ActionClick" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForSelectionStateToBe" was not found on page "WebCheckBox Actions" (with ID 221643201) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

WaitForSelection

This action waits till the specified object gets selected. You may specify the timeout and polling interval, if required.

 Input Parameters:

Parameter NameParameter DescriptionMandatoryData Type
timeOutEnter the timeout (in seconds) to wait for the object to get selected.     NoInteger
pollingIntervalEnter the frequency (in milliseconds) after which you want to check for the selection of the object before exhausting timeout. NoInteger
keySelectionEnter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect.NoString
statusIfConditionNotSatisfiedEnter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect.NoString

Example:

WaitForSelection      "5"          "500"     "Key"       "Defect"

DeselectItemByText

This action deselects option specified in the parameter.  

Input Parameters:

Parameter NameParameter DescriptionMandatoryData Type
itemNameEnter the item name you want to deselect. YesString

Example:

DeselectItemByText           "Name"

SelectMultipleItemsByIndex

This action selects multiple items specified in the parameter. 

Input Parameters:

Parameter NameParameter DescriptionMandatoryData Type
indicesEnter the indices of the items you want to select. Multiple items should be separated by (^) caret. Index starts from 1.YesArray

Example:

SelectMultipleItemsByIndex                "1^2^4"

StoreFirstSelectedItem

This action stores the first item under the specified key. The key value can be retrieved using the key name.

Input Parameters:

Parameter NameParameter DescriptionMandatoryData Type
keyEnter the key name under which you want to store the item name. YesString

Example:

StoreFirstSelectedItem          "Key"

DeselectItemByValue

This action deselects the specified parameterized item from the list.

Input Parameters:

Parameter NameParameter DescriptionMandatoryData Type
valueEnter the item that you want to deselect from the list.YesString

Example:

DeselectItemByValue            "Name"

DeselectMultipleItemsByIndex

This action deselects multiple items specified in the parameter. 

Input Parameters:

Parameter NameParameter DescriptionMandatoryData Type
indicesEnter the indices of the items you want to deselect. Multiple items should be separated by (^) caret. Index starts from 1.YesArray

Example:

DeselectMultipleItemsByIndex      "1^5^8"

IsMultiselectList

This action verifies that web list element supports selecting multiple options and stores the result under the specified key

Input Parameters:

Parameter NameParameter DescriptionMandatoryData Type
Key

Enter the key name under which the result will be stored. The key value can be retrieved using the key name.

  • Stores True if the web list can select multiple options. 
  • Stores False if the web list cannot select multiple options. 
YesString

Example:

IsMultiselectList          "Key"

SelectItemByValue

This action selects the item specified by value from the web list.

Input Parameters:

Parameter NameParameter DescriptionMandatoryData Type
Value

Enter the value of the item which you want to select. 

YesString

Example:

SelectItemByValue           "Address 1"

SelectItemByText

This action selects option specified in the parameter.  

Input Parameters:

Parameter NameParameter DescriptionMandatoryData Type
itemNameEnter the item name you want to select. YesString

Example:

SelectItemByText           "Name"

DeselectAll

This action deselects all the options from the web list. 

This action does not have any parameter.  

DeselectAll

Macro lookup error: excerpt "DoubleClick" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "DownloadFile" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "DragandDrop" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "SendKeys" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "setValueAttribute" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "StoreCSSProperty" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "StoreLocation" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "StoreSize" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "StoreText" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "StoreValueAttribute" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForAttributeNotContains" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForAttributeContains" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForAttributeNotToBe" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForAttributeNotToBeEmpty" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForAttributeToBe" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForAttributeToBeEmpty" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForChildElement" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForClickability" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForExistence" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForInnerTextContains" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForInnerTextMatchesPattern" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForInnerTextNotContains" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForInnerTextNotToBe" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForInnerTextToBe" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForInvisibility" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForNonClickability" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForNonExistence" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForNumberOfElementsToBe" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForNumberOfElementsToBeLessThan" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForNumberOfElementsToBeMoreThan" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForStaleness" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

Macro lookup error: excerpt "WaitForVisibility" was not found on page "WebElement Actions" (with ID 221643171) in space "QFWM".

If you're experiencing issues please see our Troubleshooting Guide.

  • No labels