Multiexcerpt include macro | ||||
---|---|---|---|---|
|
Multiexcerpt macro | ||||||
---|---|---|---|---|---|---|
| ||||||
VerifyExistenceThis action verifies the existence of the specified object. Input Parameters:
|
|
|
If False – checks if the edit box does not exist
Example: |
Multiexcerpt macro | ||||||
---|---|---|---|---|---|---|
| ||||||
VerifyVisibilityThis action verifies the visibility of the specified object. Input Parameters:
|
|
|
|
|
If False – checks if the edit box is not visible
Example: |
Click
This action clicks the specified object.
This action does not have any parameter.
Example:
Click
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 parameters. Example: |
SetFocus
|
This action simulates a user hovering a mouse over the specified button.
Example:MouseOver
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:
|
|
|
|
|
If False – checks if the edit box is disabled
Example: |
MouseUp
simulates the event that occurs when the user releases the mouse button.
Input Parameters:
Parameter Name
Parameter Description
Mandatory
Data Type
X
The x-coordinate of the click.
Yes
String
Y
The x-coordinate of the click.
Yes
String
Example
MouseUp "5" "10"
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" |
waits for maximum 10 seconds for the object to |
appear. If the object |
appears before 10 seconds elapses, |
WaitForObject
execution continues to the next steps. |
to |
disappear. If the object |
disappears before 15 seconds elapses, |
execution continues to the next steps. |
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. 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" |
Excerptmultiexcerpt-macro | ||
---|---|---|
| ||
ClickJSThis action clicks the specified object from the web application under test. This action does not have any input parameters. 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 parameters. Note: ActionClick uses underlying selenium WebDriver “Action” class to perform click action. Qualitia recommends using this action for web applications. Example: ActionClick |