- Notifications
You must be signed in to change notification settings - Fork 189
Touch action samples
Sergey Tikhomirov edited this page Aug 2, 2015 · 1 revision
TouchAction a1 = new TouchAction (driver); a1 .Press (element, 100, 100) .Wait (1000) .Release (); a1.Perform();MultiAction m = new MultiAction(driver); TouchAction a1 = new TouchAction (driver); a1 .Press (element, 100, 100) .Wait (1000) .Release (); m.Add(a1); TouchAction a2 = new TouchAction (); a2 .Tap (100, 100) .MoveTo (element); m.Add (a2); m.Perform();