I am trying to select exact contact from Address Book in Android, I wrote the function to scroll down in Contacts but it is not scrolling down. I am trying it with AndroidDriver.
Once it will scroll to exact contact, how it can select all information by clicking on contact like FirstName, LastName, Email, PhoneNumber?
How can I achieve this? can u please suggest me other remaining code?
Here is my code snippet,
public void test() {
driver.manage().timeouts().implicitlyWait(50, TimeUnit.SECONDS);
driver.findElement(By.name("Contacts")).click();
MobileElement abc = (MobileElement)driver.findElement(By.className("android.widget.TextView"));
abc.swipe(SwipeElementDirection.UP, 6000);
}