Skip to content

Commit 766b321

Browse files
Merge branch 'release25.11-SNAPSHOT' into 25.11_fb_schedulingPermissions
2 parents 98946d6 + 5ce6451 commit 766b321

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

test/src/org/labkey/test/tests/targetedms/TargetedMSQCConfigureMetricTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ private void verifyOutlierCount(String replicate, QCPlotsWebPart.MetricType metr
203203
QCSummaryWebPart qcSummaryWebPart = new PanoramaDashboard(this).getQcSummaryWebPart();
204204
qcSummaryWebPart.gotoUtilizationCalendar();
205205
qcSummaryWebPart = new QCSummaryWebPart(getDriver());
206+
waitForElement(Locator.tagContainingText("div", replicate));
206207
scrollIntoView(Locator.tagContainingText("div", replicate));
207208
mouseOver(Locator.tagContainingText("div", replicate));
208209
mouseOver(Locator.tagContainingText("div", replicate));

test/src/org/labkey/test/tests/targetedms/TargetedMSQCGuideSetTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,9 @@ public void testSmallMoleculePareto() throws IOException, CommandException
355355
verifyGuideSetSmallMoleculeStats(gsSmallMolecule);
356356

357357
clickAndWait(Locator.linkWithText("Pareto Plot")); //go to Pareto Plot tab
358+
Locator.tagWithClass("div", "x4-mask-msg-text")
359+
.withText("Loading...").waitForElementToDisappear(getDriver(), 15_000);
360+
358361
ParetoPlotPage paretoPage = new ParetoPlotPage(getDriver());
359362
ParetoPlotsWebPart paretoPlotsWebPart = paretoPage.getParetoPlotsWebPart();
360363

test/src/org/labkey/test/tests/targetedms/TargetedMSTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,10 @@ protected void ensureComparisonPlots(String title)
341341

342342
protected void verifyQcSummary(int sampleFileCount, int precursorCount)
343343
{
344+
Locator.tagWithClass("div", "x4-panel")
345+
.withDescendant(Locator.tagWithText("label", "Loading..."))
346+
.waitForElementToDisappear(getDriver(), 15_000);
347+
344348
QCSummaryWebPart qcSummaryWebPart = new PanoramaDashboard(this).getQcSummaryWebPart();
345349
verifyQcSummary(qcSummaryWebPart.getQcSummaryTiles().get(0), null, sampleFileCount, precursorCount);
346350
}

0 commit comments

Comments
 (0)