java - How to scroll down on Appium when you have multi plages to go down? -
how scroll down when have multiple pages. on third page bottom there link when use driver.scrollto();, skips goes first page.
you can use javascriptexecutor scrolling have created below method scrolling working fine in ios have not tested android
public static void swipe(appiumdriver<?> driver,string sdirection, int icount) { while(icount>0) { hashmap<string,string> swipeobject=new hashmap<string,string>(); swipeobject.put("direction", sdirection); javascriptexecutor jsdriver=(javascriptexecutor)driver; jsdriver.executescript("mobile:scroll", swipeobject); icount--; } }
hope might :)
Comments
Post a Comment