mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fixing other issues on test case messages for readability
This commit is contained in:
parent
f7e99ca611
commit
f19497999c
1 changed files with 7 additions and 7 deletions
|
|
@ -538,7 +538,7 @@ public class ParagraphActionsIT extends AbstractZeppelinIT {
|
|||
|
||||
runParagraph(1);
|
||||
waitForParagraph(1, "FINISHED");
|
||||
collector.checkThat("Only after paragraph run we should see the new updated output",
|
||||
collector.checkThat("Only after running the paragraph, we can see the newly updated output",
|
||||
driver.findElement(By.xpath(getParagraphXPath(1) + "//div[contains(@class, 'text plainTextContent')]")).getText(),
|
||||
CoreMatchers.equalTo("Hello Zeppelin"));
|
||||
|
||||
|
|
@ -574,14 +574,14 @@ public class ParagraphActionsIT extends AbstractZeppelinIT {
|
|||
|
||||
runParagraph(1);
|
||||
waitForParagraph(1, "FINISHED");
|
||||
collector.checkThat("Only after paragraph run we should see the new output including the selected option",
|
||||
collector.checkThat("Only after running the paragraph, we can see the new output including the selected option",
|
||||
driver.findElement(By.xpath(getParagraphXPath(1) + "//div[contains(@class, 'text plainTextContent')]")).getText(),
|
||||
CoreMatchers.equalTo("Howdy 1"));
|
||||
|
||||
deleteTestNotebook(driver);
|
||||
|
||||
} catch (Exception e) {
|
||||
handleException("Exception in ParagraphActionsIT while testSingleDynamicFormTextInput ", e);
|
||||
handleException("Exception in ParagraphActionsIT while testSingleDynamicFormSelectForm ", e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -610,14 +610,14 @@ public class ParagraphActionsIT extends AbstractZeppelinIT {
|
|||
|
||||
runParagraph(1);
|
||||
waitForParagraph(1, "FINISHED");
|
||||
collector.checkThat("Only after paragraph run we should see the new output without the box we unchecked",
|
||||
collector.checkThat("Only after running the paragraph, we can see the newly updated output without the box we unchecked",
|
||||
driver.findElement(By.xpath(getParagraphXPath(1) + "//div[contains(@class, 'text plainTextContent')]")).getText(),
|
||||
CoreMatchers.containsString("Greetings leia and luke"));
|
||||
|
||||
deleteTestNotebook(driver);
|
||||
|
||||
} catch (Exception e) {
|
||||
handleException("Exception in ParagraphActionsIT while testSingleDynamicFormTextInput ", e);
|
||||
handleException("Exception in ParagraphActionsIT while testSingleDynamicFormCheckboxForm ", e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -647,14 +647,14 @@ public class ParagraphActionsIT extends AbstractZeppelinIT {
|
|||
|
||||
runParagraph(1);
|
||||
waitForParagraph(1, "FINISHED");
|
||||
collector.checkThat("Only after paragraph run we should see the new output including the selected option",
|
||||
collector.checkThat("Only after running the paragraph, we can see the new output including the selected option",
|
||||
driver.findElement(By.xpath(getParagraphXPath(1) + "//div[contains(@class, 'text plainTextContent')]")).getText(),
|
||||
CoreMatchers.equalTo("Howdy 1\nHowdy "));
|
||||
|
||||
deleteTestNotebook(driver);
|
||||
|
||||
} catch (Exception e) {
|
||||
handleException("Exception in ParagraphActionsIT while testSingleDynamicFormTextInput ", e);
|
||||
handleException("Exception in ParagraphActionsIT while testMultipleDynamicFormsSameType ", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue