I have tried most of the possible method(java script/touchaction) but not able to scroll if any one have solution please help me, thanks
Try below code:
Dimension size = driver.manage().window().getSize();
int x = size.width / 2;
int endy = (int) (size.height * 0.75);
int starty = (int) (size.height * 0.20);
driver.swipe(x, starty, x, endy, 1000);
For more details check below post: Click Here