在 Appium wiki 页面 ( https://github.com/appium/appium/wiki/Automating-mobile-gestures ) 中提到了以下端点:
- session/:sessionId/触摸/点击
- 会话:/sessionId/touch/flick_precise
- 会话:/sessionId/触摸/滑动
但是,当使用 WebDriver (2.35) 的最新 Java 绑定的 TouchActions 时:
- 调用“singleTap”,调用/touch/click(即,不是“tap”)。至少在我的应用程序中,这会导致 Appium 服务器输出错误并丢弃客户端而不通知它,因此客户端只是挂起。
- 调用"flick",调用 /touch/flick (而不是 "flick_precis"),效果很好。
哪个端点是正确的?那些写在文档或java绑定中的?
谢谢!