public void DoubleTap()
        {
            var touchable = AppSession.FindElementByAccessibilityId("Touchable");

            TouchScreen.DoubleTap(touchable.Coordinates);
            Assert.AreEqual("DoubleTapped", _GetLastResultString());
        }
 /// <summary>
 ///     Performs the action.
 /// </summary>
 public async Task Perform(CancellationToken cancellationToken = new CancellationToken())
 {
     await TouchScreen.DoubleTap(ActionLocation, cancellationToken).ConfigureAwait(false);
 }