How to retrieve the Text of a StyledText widget? The generated code does something like this:
ui.click(new XYLocator(new SWTWidgetLocator(StyledText.class),280, 25));
I need to edit the text in that styledtext. If I could retrieve it, I could subsitute the string I need and then do ui.enterText(). The problem is I have no access to the contents of StyledText...
Thanks!