Scroll method is not working using python

is there any update or we have to user x and y cordinates only .As now with java also its not working.

Hi @shatabdi i’m currently using Java Client 5.0.0 (in which swipe and scroll are removed) with appium 1.6.4

As swipe/scroll methods are removed. you’ve to use Touch actions

Java Snippet

TouchAction t = new TouchAction(mobDriver);
int eleWidth = element.getSize().getWidth();
int eleHeight = element.getSize().getHeight();
t.moveTo(eleWidth, eleHeight);

it is same like when we try to swipe using the coordinates in python