Hi,
Do you know if Appium can automate force touch on Android 7 OS to test app shortcuts?
When I use longPress method using Java and Appium v1.6.4-beta,I see the message: WebDriverException: Method has not yet been implemented.
This is what I have tried:
TouchAction touchAction=new TouchAction(driver);
touchAction.longPress(156, 1662, 2).release().perform();
Could anyone suggest how I could get out of this situation?
Thanks!