Hi Patrick,
We're currently investigating international keyboard support.
Could you submit a bug report to:
wintest-support@instantiations.com
This will help us track your issue.
In the meantime, the abbot tester classes that ship with windowtester might help.
Here's what I'd try:
- Code: Select all
Text text = (Text)ui.click("text"); //click the text and cache it
new abbot.tester.swt.TextTester().actionEnterText("slwinpatsp1"); //use the abbot tester to set it
Why should this work? Behind the scenes, abbot is setting the text directly on the widget:
- Code: Select all
widget.setText(text);
This bypasses our keyStroke event posting which is the culprit in this case.
Hope this helps! (And please follow up with a bug report either way.)
Thanks!
-phil