I'm trying to automate an android test in appium and I have selected the webdriver as in wd/hub for this purpose. However, the tap method there is virtually the click method as all the auto-recorded steps are generated as clicks instead of tap / touch. I've tried to import TouchActions from selenium using the following command
from selenium.webdriver.common.touch_actions import TouchActions
but python doesn't seem to recognize this command. I'm not sure if this command is deprecated. Any ideas anyone?
Thanks!