SendKeys Action is taking more than 30sec to enter value in text box of Native App in IOS Iphone devices with Appium Studio 10.9.82

Hi,

The SendKeys Action is taking more than 30sec to enter value in text box of Native IOS App in IOS Iphone devices, while the same code is just taking 1 sec to enter value in text box of Native Android App in android devices in Appium Studio 10.9.82.

Iphone 6plus Devices used of IOS 10.3

And also the same sendKeys is working good and fast in Appium Studio 10.9.72 and Appium Studio 10.8.41 for IOS devices.

Hi Shubu,

I’ve tested it here, and I’m not able to reproduce the issue - can you collect the support data and upload them?
https://docs.experitest.com/display/AS/Collect+Support+Data

I’m using this code to send the text to a textbox and it’s fast (in C#):

AppiumWebElement user = driver.FindElement(By.XPath("xpath=//*[@placeholder='textbox:']"));
            user.Clear();
            user.SendKeys(user_string);

If I don’t use this code when I send text to a textbox it inserts a colon between characters.

i.e: if I send Hello, the device wrote: H,e,l,l,o,

1 Like