mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix: ParagraphActionsIT
This commit is contained in:
parent
536674308f
commit
6a163d6264
1 changed files with 4 additions and 4 deletions
|
|
@ -372,7 +372,7 @@ public class ParagraphActionsIT extends AbstractZeppelinIT {
|
|||
driver.findElement(By.xpath(xpathToShowTitle)).getText(),
|
||||
CoreMatchers.allOf(CoreMatchers.startsWith("Show title"), CoreMatchers.containsString("Ctrl+"),
|
||||
CoreMatchers.anyOf(CoreMatchers.containsString("Option"), CoreMatchers.containsString("Alt")),
|
||||
CoreMatchers.containsString("+t")));
|
||||
CoreMatchers.containsString("+T")));
|
||||
|
||||
clickAndWait(By.xpath(xpathToShowTitle));
|
||||
collector.checkThat("After Show Title : The title field contains",
|
||||
|
|
@ -384,7 +384,7 @@ public class ParagraphActionsIT extends AbstractZeppelinIT {
|
|||
driver.findElement(By.xpath(xpathToHideTitle)).getText(),
|
||||
CoreMatchers.allOf(CoreMatchers.startsWith("Hide title"), CoreMatchers.containsString("Ctrl+"),
|
||||
CoreMatchers.anyOf(CoreMatchers.containsString("Option"), CoreMatchers.containsString("Alt")),
|
||||
CoreMatchers.containsString("+t")));
|
||||
CoreMatchers.containsString("+T")));
|
||||
|
||||
clickAndWait(By.xpath(xpathToHideTitle));
|
||||
ZeppelinITUtils.turnOffImplicitWaits(driver);
|
||||
|
|
@ -438,7 +438,7 @@ public class ParagraphActionsIT extends AbstractZeppelinIT {
|
|||
driver.findElement(By.xpath(xpathToShowLineNumberButton)).getText(),
|
||||
CoreMatchers.allOf(CoreMatchers.startsWith("Show line numbers"), CoreMatchers.containsString("Ctrl+"),
|
||||
CoreMatchers.anyOf(CoreMatchers.containsString("Option"), CoreMatchers.containsString("Alt")),
|
||||
CoreMatchers.containsString("+m")));
|
||||
CoreMatchers.containsString("+M")));
|
||||
|
||||
|
||||
clickAndWait(By.xpath(xpathToShowLineNumberButton));
|
||||
|
|
@ -451,7 +451,7 @@ public class ParagraphActionsIT extends AbstractZeppelinIT {
|
|||
driver.findElement(By.xpath(xpathToHideLineNumberButton)).getText(),
|
||||
CoreMatchers.allOf(CoreMatchers.startsWith("Hide line numbers"), CoreMatchers.containsString("Ctrl+"),
|
||||
CoreMatchers.anyOf(CoreMatchers.containsString("Option"), CoreMatchers.containsString("Alt")),
|
||||
CoreMatchers.containsString("+m")));
|
||||
CoreMatchers.containsString("+M")));
|
||||
|
||||
clickAndWait(By.xpath(xpathToHideLineNumberButton));
|
||||
collector.checkThat("After \"Hide line number\" the Line Number is Enabled",
|
||||
|
|
|
|||
Loading…
Reference in a new issue