How can I swipe scroll to bottom in an android app using appium
?
I tried using
driver.swipe(300,800,300,500,2);
driver.scrollTo("string")
But above did not helped. Can anyone suggest me some generic solution ?
How can I swipe scroll to bottom in an android app using appium
?
I tried using
driver.swipe(300,800,300,500,2);
driver.scrollTo("string")
But above did not helped. Can anyone suggest me some generic solution ?
A generic solution will be scrolling using dimensions. use the below code
add this to ur code and simply use scroll(); in ur test case. Modify the decimal values given in the code to nmeet your requirements