};
@Override
public void initialise() {
final ScrollableArea scrollArea = find("scrollArea", ScrollableArea.class);
scrollArea.moveToBottom();
List<CommandInfo> commands = console.getCommandList();
// JAVA8: replace with lamba expression
Collection<String> commandNames = Collections2.transform(commands, new Function<CommandInfo, String>() {