Description
Exception is thrown when using TouchAction().longPress() more than once. Doesn't occur when just using TouchAction().press(). Logs didn't really provide any information. I see there's a note about TouchAction being fixed but didn't see an issue for the longPress.
Environment
- java client revision: b511c35
- Appium v1.5.1
- Node.js v4.2.6
- Android 6.0.1 device
- Real device
Code To Reproduce Issue
Repro:
TouchAction action = new TouchAction(driver);
try {
action.longPress(0, 0).release().perform();
action.longPress(0, 0).release().perform();
} catch (Exception e) {
e.printStackTrace();
}
Exception stacktraces
org.openqa.selenium.WebDriverException: An unknown server-side error occurred while processing the command. (WARNING: The server did not provide any stacktrace information)
Description
Exception is thrown when using TouchAction().longPress() more than once. Doesn't occur when just using TouchAction().press(). Logs didn't really provide any information. I see there's a note about TouchAction being fixed but didn't see an issue for the longPress.
Environment
Code To Reproduce Issue
Repro:
Exception stacktraces
org.openqa.selenium.WebDriverException: An unknown server-side error occurred while processing the command. (WARNING: The server did not provide any stacktrace information)