We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e853e24 commit a2d8410Copy full SHA for a2d8410
src/main/java/io/appium/java_client/TouchAction.java
@@ -125,6 +125,11 @@ public T release() {
125
* Moves current touch to a new position.
126
*
127
* @param moveToOptions see {@link PointOption} and {@link ElementOption}
128
+ * Important: some older Appium drivers releases have a bug when moveTo
129
+ * coordinates are calculated as relative to the recent pointer position
130
+ * in the chain instead of being absolute.
131
+ * @see <a href="https://github.com/appium/appium/issues/7486">Appium Issue #7486</a>
132
+ * for more details.
133
* @return this TouchAction, for chaining.
134
*/
135
public T moveTo(PointOption moveToOptions) {
0 commit comments