Header
(8.6.X) SFDCMenu
The SFDCMenu component supports the following actions:
SelectItemByIndex
SelectItemByText
VerifyPropertyValue
StorePropertyValue
MouseOver
VerifyExistence
VerifyEnability
VerifyVisibility
StoreExistence
All the SFDCMenu class actions work for the following SFDC components:Â
buttonMenuItem
actionMenuItem
The following table describes how Qualitia Automation Studio (QAS) identifies and adds a menu into the object repository when using the Qualitia Automation Recorder or Chrome Object Spy:
SFDC Component | Added by Qualitia Automation Recorder or Chrome Object Spy |
---|---|
buttonMenuItem | <componentname>_buttonMenuItem |
actionMenuItem | <componentname>_actionMenuItem |
SelectItemByIndex
This action selects items from SFDC Menu by using the index.
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
items | Enter the menu item whose index is provided as an input. | Yes | String |
Example:
SelectItemByIndex   "2"Â
SelectItemByText
This action selects the items from the Menu by using the text.
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
itemName | Enter the name of the item to be selected from menu items. | Yes | String |
Example:
SelectItemByText   "Open"Â
VerifyPropertyValue
This action verifies the property of the specified object using property names, such as class, id, name, and role, and parameter value, such as the actual value of the property.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
propertyName | Enter the property or attribute name as specified in the DOM structure. | Yes | String |
value | Enter the property value you want to verify. | Yes | String |
Example:
VerifyPropertyValue   "class"   "fr small"
StorePropertyValue
This action stores the property of the specified object using  property names, such as class, id, name, and role, and parameter value, such as the actual value of the property.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
key | Enter a variable to store the property value. | Yes | Â String |
propertyName | Enter the property or attribute name whose value you want to store. | Yes | Â String |
Example:
StorePropertyValue   "key"  "class"
MouseOver
This action hovers over the specified object.
This action does not have any parameters.Â
Example:
MouseOver
VerifyExistence
This action verifies the existence of the specified object.Â
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
existence | Enter one of the following:
| No | String |
Example:
VerifyExistence    "True"
VerifyEnability
This action verifies the enability of the specified object.Â
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
enability | Enter one of the following:
| No | String |
Example:
VerifyEnability    "True"
VerifyVisibility
This action verifies the visibility of the specified object.Â
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
existence | Enter one of the following:
| No | String |
Â
Example:
VerifyVisibility   "True"
StoreExistence
This action stores existence of the object 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 the existence's Boolean value will be stored.Â
| Yes | String |
Example:
StoreExistence                 "Key"
ActionMenuItem
The ActionMenuItem SFDC component supports the StoreExistence action.
StoreExistence
This action stores existence of the object 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 the existence's Boolean value will be stored.Â
| Yes | String |
Example:
StoreExistence                 "Key"
Footer