Search code examples
javaappiumappium-ios

Appium entering text twice in fields on IPad


I'm new to appium and trying to automate a native app for IPad. The issue that I'm getting is when I'm trying to enter text in fields, it is getting entered twice. for e.g., if I want to enter abcd in a text field, the output that I get is abcdabcd.

Here is the snippet from my code:

driver.findElementByAccessibilityId("emailFieldLogin").setValue(email);
driver.findElementByAccessibilityId("passwordLogin").setValue(password);
driver.findElementByAccessibilityId("doneButtonLogin").click();

/*
   jave-client -> 7.0.0
   Appium      -> 1.15.1
*/

I've also tried using sendKeys and Action class but no luck.


Solution

  • for others, Issue was resolved after updating appium to 1.17.0