コード例 #1
0
        public void DoubleTap()
        {
            var touchable = AppSession.FindElementByAccessibilityId("Touchable");

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