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.
VerifyItemsExist
This action verifies the existence of the objects in the specified list.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
items | Items that need to be verified in the list | Yes | Array |
existence | Value of this parameter can be 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"
Note:
- "^" 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 an item from the list based on its index in the list.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
index | Specified index value of a list item that is to be selected in the list box. 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 the user wishes to select "Australia", then this action can be used as follows
SelectItemByIndex "3"
VerifyItemsInSequence
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 | List of multiple items in expected sequence. The multiple items are to separated by a caret (^) | 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 item(s) from the specified list box. Multiple items for deselection can be given only for the list box that has multiple selection property.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
items | Expected list item(s) that are to be deselected in the list box. If multiple items are to be passed for deselection, then the list items should be separated by a caret (^). | 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 item(s) with the expected selected item(s) list.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
items | List item(s) that are expected to be selected in the list box. If multiple expected items are to be passed for verification, then the list items should be separated by caret (^) | 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) in the specified list box with the expected number of items (size).
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
expectedSize | The expected size of the list box that will be compared with the actual size of the list box. | 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 of a list in a key. The items in the key are separated using caret operator.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
key | The key in which the items of the list items will be stored. | Yes | String |
Example:
Consider a list having the items 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 status will be fail as the list contains duplicate item "Monday"
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.
StoreSelectedItems
This action stores all the selected items of a list in a key. The items in the key are separated using caret (^).
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
key | The key in which the selected items will be stored. | 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
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.
SelectItemAndWait
This action selects an item from the list and waits. It waits for the max sync time set in the Qualitia configuration (Execution) window for the key "Sync Time". If the page loads before the max sync time, then the action will stop waiting.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
item | 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 to be selected.
In Webdriver we wait 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 will stop 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 "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.