}
@Test
public void clicksArrowButton() throws Exception {
try {
List<Text> findControls = new ControlFinder().findControls(widgetOfType(Text.class));
SWTBotText text = new SWTBotText(findControls.get(0));
text.setText("");
assertFalse(bot.checkBox("Listen").isChecked());
bot.checkBox("Listen").click();
assertTrue(bot.checkBox("Listen").isChecked());