Class
MobileDevice class
Action
Performs a multi-touch operation with two pointers. It executes two swipe operation at the same time.
Syntax
device.TwoPointerMultiTouch(startPointer1, endPointer1, startPointer2, endPointer2, [steps, delayBetweenSteps])
Variable |
Description |
startPointer1 |
The start point of the first pointer. POINT. |
endPointer1 |
The end point of the first pointer. POINT. |
startPointer2 |
The start point of the second pointer. POINT. |
endPointer2 |
The end point of the second pointer. POINT. |
steps |
Optional.the number of steps between the specified points. Increase the amount of steps to increase the duration of the drag operation. INTEGER. |
delayBetweenSteps |
Optional.the delay in milliseconds between swipe steps. For example, when scrolling an application with a swipe operation, it depends on the swipe speed how far the application scrolls. Typically a higher delay (e.g. 300 milliseconds) creates more reproducible results. INTEGER. |