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();