This site is in read only mode. Please continue to browse, but replying, likes, and other actions are disabled for now.
41 / 43
Mar 2016

Hi Team,

I have also faced this issue in past then i switch to Actions class of selenium and its working fine.

Please use selenium Actions class instead of Touch Action in Mobile Web only, Touch action works perfectly except Mobile web.

2 years later

Below c# code working fine.

For tap element you need to take the x and y location… u can find the location of the element in the corner of your uiautomatorviewer.

TouchAction touchAction1 = new TouchAction(driver);
touchAction1.Tap(97, 392);
touchAction1.Perform();