Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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 SelectItems                                         "England^India^Australia"

Note

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.


Multiexcerpt include macro
nameVerifyExistence
pageWebButton Actions

Multiexcerpt include macro
nameVerifyVisibility
pageWebButton Actions

Multiexcerpt include macro
nameClick
pageWebButton Actions

Multiexcerpt include macro
nameStorePropertyValue
pageWebButton Actions

Multiexcerpt include macro
nameSetFocus
pageWebButton Actions

Multiexcerpt include macro
nameMouseOver
pageWebButton Actions

Multiexcerpt include macro
nameMouseUp
pageWebButton Actions

Multiexcerpt include macro
nameClickAt
pageWebButton Actions

On this page:

Table of Contents
maxLevel2
minLevel2
absoluteUrltrue


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"

Note
  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"


Multiexcerpt include macro
nameWaitForObject
pageWebButton Actions

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"

Note

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.

Multiexcerpt include macro
nameRightClick
pageWebElement Actions

Multiexcerpt include macro
nameVerifyEnability
pageWebButton Actions

Multiexcerpt include macro
nameDragandDrop
pageWebElement Actions

Multiexcerpt include macro
nameClickAndWait
pageWebButton Actions

Multiexcerpt include macro
nameStoreExistence
pageWebButton Actions

Multiexcerpt include macro
nameStoreChildCount-withoutlocator
pageWebButton Actions

Multiexcerpt include macro
nameScrollIntoView
pageWebButton Actions

Multiexcerpt include macro
nameClickJS
pageWebButton Actions

Multiexcerpt include macro
nameActionClick
pageWebButton Actions

Multiexcerpt include macro
nameWaitForSelectionStateToBe
pageWebCheckBox Actions

Multiexcerpt macro
nameWaitForSelection

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"


Multiexcerpt macro
nameDeselectItemByText

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"


Multiexcerpt macro
nameSelectMultipleItemsByIndex

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"


Multiexcerpt macro
nameStoreFirstSelectedItem

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"


Multiexcerpt macro
nameDeselectItemByValue

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"


Multiexcerpt macro
nameDeselectMultipleItemsByIndex

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"


Multiexcerpt macro
nameIsMultiselectList

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"


Multiexcerpt macro
nameSelectItemByValue

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"


Multiexcerpt macro
nameSelectItemByText

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"


Multiexcerpt macro
nameDeselectAll

DeselectAll

This action deselects all the options from the web list. 

This action does not have any parameter.  

DeselectAll


Multiexcerpt include macro
nameDoubleClick
pageWebElement Actions

Multiexcerpt include macro
nameDownloadFile
pageWebButton Actions

Multiexcerpt include macro
nameDragandDrop
pageWebButton Actions

Multiexcerpt include macro
nameSendKeys
pageWebElement Actions

Multiexcerpt include macro
namesetValueAttribute
pageWebElement Actions

Multiexcerpt include macro
nameStoreCSSProperty
pageWebElement Actions

Multiexcerpt include macro
nameStoreLocation
pageWebElement Actions

Multiexcerpt include macro
nameStoreSize
pageWebElement Actions

Multiexcerpt include macro
nameStoreText
pageWebElement Actions

Multiexcerpt include macro
nameStoreValueAttribute
pageWebElement Actions

Multiexcerpt include macro
nameWaitForAttributeNotContains
pageWebElement Actions

Multiexcerpt include macro
nameWaitForAttributeContains
pageWebElement Actions

Multiexcerpt include macro
nameWaitForAttributeNotToBe
pageWebElement Actions

Multiexcerpt include macro
nameWaitForAttributeNotToBeEmpty
pageWebElement Actions

Multiexcerpt include macro
nameWaitForAttributeToBe
pageWebElement Actions

Multiexcerpt include macro
nameWaitForAttributeToBeEmpty
pageWebElement Actions

Multiexcerpt include macro
nameWaitForChildElement
pageWebElement Actions

Multiexcerpt include macro
nameWaitForClickability
pageWebElement Actions

Multiexcerpt include macro
nameWaitForExistence
pageWebElement Actions

Multiexcerpt include macro
nameWaitForInnerTextContains
pageWebElement Actions

Multiexcerpt include macro
nameWaitForInnerTextMatchesPattern
pageWebElement Actions

Multiexcerpt include macro
nameWaitForInnerTextNotContains
pageWebElement Actions

Multiexcerpt include macro
nameWaitForInnerTextNotToBe
pageWebElement Actions

Multiexcerpt include macro
nameWaitForInnerTextToBe
pageWebElement Actions

Multiexcerpt include macro
nameWaitForInvisibility
pageWebElement Actions

Multiexcerpt include macro
nameWaitForNonClickability
pageWebElement Actions

Multiexcerpt include macro
nameWaitForNonExistence
pageWebElement Actions

Multiexcerpt include macro
nameWaitForNumberOfElementsToBe
pageWebElement Actions

Multiexcerpt include macro
nameWaitForNumberOfElementsToBeLessThan
pageWebElement Actions

Multiexcerpt include macro
nameWaitForNumberOfElementsToBeMoreThan
pageWebElement Actions

Multiexcerpt include macro
nameWaitForStaleness
pageWebElement Actions

Multiexcerpt include macro
nameWaitForVisibility
pageWebElement Actions