← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #677799]: Use dotted characters in Windows

 

Question #677799 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/677799

    Status: Open => Answered

Manfred Hampl proposed the following answer:
Where do these strings come from?

What happens if you try the simple paste("áéöüóőúű") statement?

https://www.justinweiss.com/articles/3-steps-to-fix-encoding-problems-
in-ruby/ gives some hints about character encoding conversation in Ruby
(hopefully also applicable to JRuby).

Maybe one of these works:
paste("áéöüóőúű".encode("UTF-8"))
paste("áéöüóőúű".force_encoding("ISO-8859-1") .encode("UTF-8"))
or something similar.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.