You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TouchAction action = new TouchAction(driver);
action.LongPress(100, 100).Perform();
following error occurred:
"[AndroidDriver] Error: unknown action longpress"
This error got already fixed in issue #180, but only in one of two cases in the code.
To fix this issue you need to change "longpress" to longPress" in the TouchAction class.
Environment
.NET Framework version 4.7
Appium version v1.7.1
Node.js version 6.11.0
The text was updated successfully, but these errors were encountered:
Description
While trying to use
TouchAction action = new TouchAction(driver);
action.LongPress(100, 100).Perform();
following error occurred:
"[AndroidDriver] Error: unknown action longpress"
This error got already fixed in issue #180, but only in one of two cases in the code.
To fix this issue you need to change "longpress" to longPress" in the TouchAction class.
Environment
The text was updated successfully, but these errors were encountered: