...
DragAndDropToObject
This action drags the specified object and drops a specified web element to the target web element.it in the position of another specified object.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
dragLocator | Enter the locator value of |
an element to be |
dragged. | Yes | String |
dragLocatorType | Enter the locator type of the |
element to be |
dragged. | Yes | String |
dropToLocator | Enter the locator |
of |
an element whose location (i.e., whose centre-most pixel) will be the point where dragLocator is dropped. | Yes | String |
dropToLocatorType | Enter the locator type of the |
element where the element will be dragged. | Yes | String |
Example:
DragAndDropToObject “abc” “id” “xyz” “id” "//div/img[@alt='abx']" "xpath" "abc" "id"
OpenURL
This action opens the specified URL in the browser selected in the associated execution profile.
...
This action waits until the number of open windows reaches the count specified in the parameter. You may use polling interval and timeout, if required.
Info |
---|
|
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
expectedNumber | Enter expected number of windows. | No | String |
timeOut | Enter the timeout (in seconds) to wait. | No | String |
pollingInterval | Enter the frequency (in milliseconds) after which you want to check whether the specified count has reached. | No | String |
keyNumOfWindows | Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to show in the report in case the expected condition is not satisfied. value for this parameter can be Pass, Fail, and Defect. | No | String |
...