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.
| 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"
- "^" in Qualitia is a delimiter for items in an array.
- If an empty data ("" or $NULL$) is passed as the data, the action will passed only if there exist an "" item in the webList.
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.
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"
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"
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 "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.
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 Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
timeOut | Enter the timeout (in seconds) to wait for the object to get selected. | No | Integer |
pollingInterval | Enter the frequency (in milliseconds) after which you want to check for the selection of the object before exhausting timeout. | No | Integer |
keySelection | Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. | No | String |
statusIfConditionNotSatisfied | Enter 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. | No | String |
Example:
WaitForSelection "5" "500" "Key" "Defect"
DeselectItemByText
This action deselects option specified in the parameter.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
itemName | Enter the item name you want to deselect. | Yes | String |
Example:
DeselectItemByText "Name"
SelectMultipleItemsByIndex
This action selects multiple items specified in the parameter.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
indices | Enter the indices of the items you want to select. Multiple items should be separated by (^) caret. Index starts from 1. | Yes | Array |
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 Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
key | Enter the key name under which you want to store the item name. | Yes | String |
Example:
StoreFirstSelectedItem "Key"
DeselectItemByValue
This action deselects the specified parameterized item from the list.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
value | Enter the item that you want to deselect from the list. | Yes | String |
Example:
DeselectItemByValue "Name"
DeselectMultipleItemsByIndex
This action deselects multiple items specified in the parameter.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
indices | Enter the indices of the items you want to deselect. Multiple items should be separated by (^) caret. Index starts from 1. | Yes | Array |
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 Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
Key | Enter the key name under which the result will be stored. The key value can be retrieved using the key name.
| Yes | String |
Example:
IsMultiselectList "Key"
SelectItemByValue
This action selects the item specified by value from the web list.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
Value | Enter the value of the item which you want to select. | Yes | String |
Example:
SelectItemByValue "Address 1"
SelectItemByText
This action selects option specified in the parameter.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
itemName | Enter the item name you want to select. | Yes | String |
Example:
SelectItemByText "Name"
DeselectAll
This action deselects all the options from the web list.
This action does not have any parameter.
DeselectAll