Skip to content

Commit 21d1f52

Browse files
author
hextraza
committed
Add navigate check
1 parent 9375638 commit 21d1f52

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

jbrowse/test/src/org/labkey/test/tests/external/labModules/JBrowseTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -411,11 +411,11 @@ private void testOutputFileProcessing() throws Exception
411411
WebElement searchBox = Locator.tagWithClass("div", "MuiInputBase-root").findElement(getDriver());
412412
searchBox.sendKeys("1");
413413
waitForElement(Locator.tagWithText("div", "1"));
414-
//Assert(...expectations...)
415-
//searchBox.sendKeys(Keys.ENTER);
416-
417-
//waitForElement()
414+
Assert.assertEquals("Incorrect row count", 3, dr.getDataRowCount());
415+
searchBox.sendKeys(Keys.ENTER);
418416

417+
click(Locator.tagWithText("button", "Open"));
418+
waitForElement(Locator.tagWithText("span", "Tracks Provided By This Session"));
419419
}
420420

421421
public static <T> Collector<T, ?, T> toSingleton() {

0 commit comments

Comments
 (0)