}
private static void checkDialogText(String expectedDialogText, String actualDialogText) {
if (expectedDialogText != null && !expectedDialogText.equals(actualDialogText)) {
// TODO Take screenshot
throw new DialogTextMismatch(actualDialogText, expectedDialogText);
}
}