I have 3 emails
String[] emails = {"[email protected]", "[email protected]", "[email protected]"}
I want the code to select [email protected]
first, [email protected]
second, and [email protected]
third, and plug it into this command :
driver.findElement(By.xpath("//android.widget.EditText[@index='2']")).sendKeys(emails);
But how do I make it so it selects [email protected]
first, [email protected]
second, and [email protected]
last?