Is it possible to copy and paste a string using Selendroid / Appium on an Android testing device?
I'm trying to work out how to use sendKeys to an input on an app that uses non-English characters (Arabic, Russian, Portuguese etc) -- from what I can find, it's not really possible to run a system keyboard with multiple languages (SwiftKey does 3, but it still doesn't seem to respond with sendKeys), and so a viable solution for me was to copy the string (as I have it on the server side) and then paste it into the text box.
How do I send these commands (copy/paste)? Is it possible?
FYI my test is in Java, but a solution in any language is very much welcome :)
Cheers!