Skip to content

Commit 23d5e0d

Browse files
Merge branch 'develop' into fb_pipelineFileLike
2 parents 101e33f + b5baa83 commit 23d5e0d

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/validate_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- ready_for_review
1212

1313
permissions:
14-
pull-requests: read
14+
pull-requests: write
1515

1616
jobs:
1717
validate_pr:

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,9 +450,16 @@ private void testTitleMapping()
450450
beginAt("/" + getProjectName() + "/jbrowse-jbrowse.view?session=mgap&location=1:104..275");
451451
waitForJBrowseToLoad();
452452

453+
// This will wait for them, allowing the full browser to lod:
454+
getVariantWithinTrack("mgap_hg38", "SNV C -> T");
455+
getVariantWithinTrack("mgap_hg38", "SNV G -> C");
456+
453457
Actions actions = new Actions(getDriver());
454458
WebElement toClick = getDriver().findElements(getVariantWithinTrack("mgap_hg38", "SNV T -> C")).stream().filter(WebElement::isDisplayed).collect(JBrowseTestHelper.toSingleton()); // 1:137..137
455-
actions.click(toClick).perform();
459+
actions.moveToElement(toClick)
460+
.pause(500)
461+
.click()
462+
.perform();
456463
waitForElement(Locator.tagWithText("div", "1:137"));
457464
assertElementPresent(Locator.tagWithText("td", "Minor Allele Frequency"));
458465
}
@@ -1811,4 +1818,4 @@ private void testLuceneColumnSerialization(String sessionId) {
18111818
Assert.assertEquals(colVisModelString, getUrlParam("colVisModel"));
18121819
testLuceneColumnSerializationFirstRow();
18131820
}
1814-
}
1821+
}

0 commit comments

Comments
 (0)