}, new UIRunnable() {
public void run(UiContext context) throws Exception {
context.useShell("Color chooser");
{
List<ColorsGridComposite> grids = context.findWidgets(ColorsGridComposite.class);
ColorsGridComposite colorsComposite = grids.get(1);
EventSender sender = new EventSender(colorsComposite);
sender.moveTo(30, 50).click();
}
context.clickButton("OK");
}