-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
keyboard_enter_text into field with UIKeyboardTypeDecimalPad does not finish #555
Comments
Please paste the exact command and string. |
@fabb to clarify - are you surprised by both of these cases, or just the second (13,37) case? |
I am very surprised by the second case, and a little by the first. I know there is no Done button on the keyboard, and calabash cannot know that a vertical swipe will close the keyboard. But I wonder why |
This is very similar to the behavior described in this case: uia_type_string enters loop when trying to type a key that does not exist on the keyboard - UITextFields only #310 |
@fabb The second case where you type "13,37" is a localization problem. If you need to type a "," instead of a "." for the decimal separator, then you'll need to set the locale of the device/simulator or detect the locale in your tests and try to type the correct string. I am still trying to reproduce the first case. |
Should be fixed in 0.11.5.pre3 - #630 Please reopen if you see fit. |
I have a textfield with keyboardType
UIKeyboardTypeDecimalPad
. I try to fill it viakeyboard_enter_text
. The text is input, and then deleted again. This happens in an infinite loop even though I just calledkeyboard_enter_text
only once.I guess this has to do with the
UIKeyboardTypeDecimalPad
keyboard not having a return button.For keyboard dismissal, I have activated
UIScrollViewKeyboardDismissModeInteractive
.The text was updated successfully, but these errors were encountered: