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

Method Click

Performs mouse click operation on a specific object

Usage

Function Click( 
    Integer X [Optional], 
    Integer Y [Optional], 
    Integer MsClickLength [Optional]
)

Parameters

X (optional)

Type: Integer

Default value: 0

Coordinate Offset

Y (optional)

Type: Integer

Default value: 0

Coordinate Offset

MsClickLength (optional)

Type: Integer

Default value: 0

Interval in milliseconds to hold mouse clicked

Returns

No return value

Example

VBScript

Application("Demo").View("DemoView").Object("DemoObject").Click
'or if you need to set coordinate offset and/or hold mouse clicked, use optional parameters 
Application("Demo").View("DemoView").Object("DemoObject").Click 10, 10, 500

JavaScript

Application("Demo").View("DemoView").Object("DemoObject").Click();
// or if you need to set coordinate offset and/or hold mouse clicked, use optional parameters 
Application("Demo").View("DemoView").Object("DemoObject").Click(10, 10, 500);

Documentation Categories

ZAPTEST

FARM

LOAD