Multiexcerpt include macro | ||||
---|---|---|---|---|
|
Multiexcerpt macro | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
VerifyExistenceThis action verifies the existence of the specified object. Input Parameters:
Example: |
Multiexcerpt macro | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
VerifyVisibilityThis action verifies the visibility of the specified object. Input Parameters:
Example: |
Multiexcerpt macro | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
StorePropertyValueThis action stores the property of the specified object under the key name. The stored key value can be retrieved using the key name. Some Android and iOS properties are not accessible. List of accessible properties for Android: "name", "contentDescription", "className", "resourceId", "text", "enabled", "checkable", "checked", "clickable", "focusable", "focused", "longClickable", "scrollable", "selected", "displayed" List of accessible properties for iOS: "name", "value", "label", "hint" Input Parameters:
Example: |
Multiexcerpt macro | ||
---|---|---|
| ||
MouseOverThis action simulates a mouse hovering over the specified object. This action does not have any input parametersparameter. Example: |
Multiexcerpt macro | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
MouseDownThis action simulates left-click at the specified location on the screen. Input Parameters:
Example: MouseDown "5" "10" |
Multiexcerpt macro | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
VerifyEnabilityThis action verifies the enability of the specified object. Input Parameters:
Example: |
Multiexcerpt macro | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
ClickAtThis action clicks at the specified point on the object. Input Parameters:
Example |
Multiexcerpt macro | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
WaitForObjectThis action waits for the object to appear or disappear for the maximum number of seconds specified. If the object is found or not found before the maximum time specified, execution continues to the next steps. If the wait time is "" then the wait time shall be the "Sync Time" set under the Configuration Settings (Execution) window. Input Parameters:
Example: WaitForObject "10" "true" |
Multiexcerpt macro | ||
---|---|---|
| ||
ClickAndWaitThis action clicks the specified object and waits for the seconds specified in Sync Time under the Configuration Settings (Execution) window. Default value is 20 seconds. If the page loads before reaching the maximum sync time execution continues to the next steps. This action does not have any parameter. Example: 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 to load in ready state and assume that the page is loaded could however not work as expected at all times. |
Multiexcerpt macro | ||
---|---|---|
| ||
ClickandchooseOkOnNextConfirmationThis action handles the alert or confirmation that comes up post clicking the OK button. This action fails if the button is clicked and no alert or confirmation comes up. This action does not have any parameter. Example: |
Multiexcerpt macro | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
StoreExistenceThis action stores existence of the object under the specified key. The key value can be retrieved using the key name. Input Parameters:
Example: StoreExistence "Key" |
Multiexcerpt macro | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
StoreChildCountThis action stores the child count of the specified object under the specified key. The key value can be retrieved using the key name. Input Parameters:
Example: StoreChildCount "Key" |
Multiexcerpt macro | ||
---|---|---|
| ||
ClickJSThis action clicks the specified object from the web application under test. This action does not have any input parametersparameter. Note: ClickJS uses javascript code to perform the click action. Qualitia recommends using this action for web applications. Example: ClickJS |
Multiexcerpt macro | ||
---|---|---|
| ||
ActionClickThis action clicks the specified object from the web application under test. This action does not have any input parametersparameter. Note: ActionClick uses underlying selenium WebDriver “Action” class to perform click action. Qualitia recommends using this action for web applications. Example: ActionClick |