Touch Actions and Mobile Web

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.

@dharam1690 have you also tried the MobileActions for Native context in Androidā€¦

Specially its move to(WebElement) methodā€¦

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