Skip to content

Commit ecc88df

Browse files
Try a different URL.
1 parent c1ff103 commit ecc88df

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

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

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,6 @@ public void testSteps() throws Exception
105105

106106
testOutputFileProcessing();
107107

108-
// Previous test remains on the pipeline page. Go home to avoid any issues with the pipeline page autorefreshing.
109-
log("Go to the project home.");
110-
goToProjectHome();
111-
sleep(500);
112-
113108
testFullTextSearch();
114109
}
115110

@@ -576,13 +571,9 @@ private void testFullTextSearch() throws Exception
576571
String sessionId = info.getKey();
577572
String trackId = info.getValue();
578573

579-
log("Go to the home project again.");
580-
goToProjectHome();
581-
sleep(500);
582-
583574
// all
584575
// this should return 143 results. We can't make any other assumptions about the content
585-
String url = "/jbrowse/" + getProjectName() + "/luceneQuery.view?sessionId=" + sessionId + "&trackId=" + trackId + "&searchString=all&pageSize=143";
576+
String url = getProjectName() + "/luceneQuery.view?sessionId=" + sessionId + "&trackId=" + trackId + "&searchString=all&pageSize=143";
586577
beginAt(url, WAIT_FOR_PAGE * 2);
587578
waitForText("data");
588579
waitAndClick(Locator.tagWithId("a", "rawdata-tab"));
@@ -593,7 +584,7 @@ private void testFullTextSearch() throws Exception
593584

594585
// stringType:
595586
// ref equals A
596-
url = "/jbrowse/" + getProjectName() + "/luceneQuery.view?sessionId=" + sessionId + "&trackId=" + trackId + "&searchString=ref%3AA";
587+
url = getProjectName() + "/luceneQuery.view?sessionId=" + sessionId + "&trackId=" + trackId + "&searchString=ref%3AA";
597588
beginAt(url);
598589
waitForText("data");
599590
waitAndClick(Locator.tagWithId("a", "rawdata-tab"));

0 commit comments

Comments
 (0)