You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a UITextView with UITextAutocapitalizationTypeSentences
I am trying to type text ABC.
Normally it works but sometimes I get AbC or ABc instead. I guess there is a collision when the text view sets the keyboard to lowercase but KIF typer still sees it as uppercase.
The text was updated successfully, but these errors were encountered:
I have tried several workarounds - I tried to split the text by [A-Z] and then entered every sequence separately, inserting long delays. That doesn't work. Sometimes the uppercase letter is not typed at all. I guess the problem lies in the small delay between tapping "shift" and tapping the letter key. 0.05 delay is long enough for letters on the same keyplane but it's not enough for changing keyplanes.
I have a
UITextView
withUITextAutocapitalizationTypeSentences
I am trying to type text
ABC
.Normally it works but sometimes I get
AbC
orABc
instead. I guess there is a collision when the text view sets the keyboard to lowercase but KIF typer still sees it as uppercase.The text was updated successfully, but these errors were encountered: