java - How to scroll down on Appium when you have multi plages to go down? -


enter image description here

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

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -