mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
update selenium test
This commit is contained in:
parent
6a897a5f7c
commit
7ab6679a87
1 changed files with 2 additions and 2 deletions
|
|
@ -209,7 +209,7 @@ public class SparkParagraphIT extends AbstractZeppelinIT {
|
|||
try {
|
||||
waitForParagraph(1, "FINISHED");
|
||||
WebElement paragraph1Result = driver.findElement(By.xpath(getParagraphXPath(1) +
|
||||
"//div[@class='text']"));
|
||||
"//div[contains(@id,'_text')]"));
|
||||
collector.checkThat("Paragraph from SparkParagraphIT of testSqlSpark result: ",
|
||||
paragraph1Result.getText(), CoreMatchers.containsString("res0: org.apache.zeppelin.dep.Dependency = org.apache.zeppelin.dep.Dependency"));
|
||||
|
||||
|
|
@ -219,7 +219,7 @@ public class SparkParagraphIT extends AbstractZeppelinIT {
|
|||
try {
|
||||
waitForParagraph(2, "FINISHED");
|
||||
WebElement paragraph2Result = driver.findElement(By.xpath(getParagraphXPath(2) +
|
||||
"//div[@class='text']"));
|
||||
"//div[contains(@id,'_text')]"));
|
||||
collector.checkThat("Paragraph from SparkParagraphIT of testSqlSpark result: ",
|
||||
paragraph2Result.getText(), CoreMatchers.equalTo("import org.apache.commons.csv.CSVFormat"));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue