Get your 6-month No-Cost Opt-Out offer for Unlimited software automation!

Method SwipeTo

Swipes or Drags from current object to another

Usage

Function SwipeTo( 
        ZAPObject SwipeDestinationObject,
        Integer MsSpeed,
        Integer MsHoldBeforeSwiping
)

Parameters

SwipeDestinationObject

Type: ZAPObject

ZAPObject where application has to swipe

MsSpeed

Type: Integer

The time it takes for the entire operation in milliseconds

MsHoldBeforeSwiping

Type: Integer

Delay on object focus before start swiping in milliseconds

Returns

No return value

Example

In this example we will swipe from DemoObject1 to DemoObject2 in 0.5 seconds with holding before swipe 0.1 second

VBScript

Set destinationObj = Application("Demo").View("DemoView").Object("DemoObject2")
Application("Demo").View("DemoView").Object("DemoObject1").SwipeTo destinationObj, 500, 100

JavaScript

var destinationObj = Application("Demo").View("DemoView").Object("DemoObject2");
Application("Demo").View("DemoView").Object("DemoObject1").SwipeTo(destinationObj, 500, 100);

Documentation Categories

ZAPTEST

FARM

LOAD