0

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

Shashwat
  • 3
  • 1
  • you need top update your post with the code you tried .. other wise query will be flag soon and closed as off topic – Prasad Mar 10 '16 at 05:59

1 Answers1

0

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

Sadik Ali
  • 1,129
  • 10
  • 26