The information below concerns legacy mobile tests that work with mobile devices connected to the local computer. For new mobile tests, we recommend using the newer cloud-compatible approach. |
Description
Simulates pressing the screen at the specified point.
Declaration
ProgObj.TouchPress(X, Y)
ProgObj | An expression, variable or parameter that specifies a reference to one of the objects listed in the Applies To section | |||
X | [in] | Required | Integer | |
Y | [in] | Required | Integer | |
Result | None |
Applies To
The method is applied to the following objects:
Parameters
The method has the following parameters:
X
Specifies the horizontal coordinate of the point where pressing will be simulated.
Y
Specifies the vertical coordinate of the point where pressing will be simulated.
Result Value
None.
Remarks
This method is asynchronous. This means that TestComplete continues running the test, no matter whether it has finished or not. For information on how it may affect testing on Android devices, see Possible Issues.
Example
The example below demonstrates how to use the TouchPress
method:
JavaScript, JScript
function Test()
{
// Specify the current device
Mobile.SetCurrent("MyDevice");
// Launch the tested application
…
// Simulate user actions
…
Mobile.Device().TouchPress(5, 5);
…
}
Python
def Test():
# Specify the current device
Mobile.SetCurrent("MyDevice")
# Launch the tested application
# ...
# Simulate user actions
# ...
Mobile.Device().TouchPress(5, 5)
# ...
VBScript
Sub Test
' Specify the current device
Call Mobile.SetCurrent("MyDevice")
' Launch the tested application
…
' Simulate user actions
…
Call Mobile.Device.TouchPress(5, 5)
…
End Sub
DelphiScript
procedure Test;
begin
// Specify the current device
Mobile.SetCurrent('MyDevice');
// Launch the tested application
…
// Simulate user actions
…
Mobile.Device.TouchPress(5, 5);
…
end;
C++Script, C#Script
function Test()
{
// Specify the current device
Mobile["SetCurrent"]("MyDevice");
// Launch the tested application
…
// Simulate user actions
…
Mobile["Device"]["TouchPress"](5, 5);
…
}
See Also
Testing Mobile Applications
TouchRelease Method
AndroidDevice Object
iOSDevice Object