How to SendKey/SetValue on iOS faster

Hi everyone,

I have a text input field. I want to get the content from a JSON file and paste in this input field. I am looking for faster solution on iOS. SendKey/SetValue is pretty much ok on android, but on iOS it takes a while to type all the JSON content into a text input field.

Any alternatives , or suggestions?

Try to copy paste the content into the field

The question is now how to paste into the field. I tried to implement using clipboard described here but at the end it uses sendKeys to paste text into the field, which is again really slow on iOS.

Put the text into device’s clipboard, perform long press on the destination field and tap Paste

1 Like