Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ private void verifyOutlierCount(String replicate, QCPlotsWebPart.MetricType metr
QCSummaryWebPart qcSummaryWebPart = new PanoramaDashboard(this).getQcSummaryWebPart();
qcSummaryWebPart.gotoUtilizationCalendar();
qcSummaryWebPart = new QCSummaryWebPart(getDriver());
waitForElement(Locator.tagContainingText("div", replicate));
scrollIntoView(Locator.tagContainingText("div", replicate));
mouseOver(Locator.tagContainingText("div", replicate));
mouseOver(Locator.tagContainingText("div", replicate));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,9 @@ public void testSmallMoleculePareto() throws IOException, CommandException
verifyGuideSetSmallMoleculeStats(gsSmallMolecule);

clickAndWait(Locator.linkWithText("Pareto Plot")); //go to Pareto Plot tab
Locator.tagWithClass("div", "x4-mask-msg-text")
.withText("Loading...").waitForElementToDisappear(getDriver(), 15_000);

ParetoPlotPage paretoPage = new ParetoPlotPage(getDriver());
ParetoPlotsWebPart paretoPlotsWebPart = paretoPage.getParetoPlotsWebPart();

Expand Down
4 changes: 4 additions & 0 deletions test/src/org/labkey/test/tests/targetedms/TargetedMSTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,10 @@ protected void ensureComparisonPlots(String title)

protected void verifyQcSummary(int sampleFileCount, int precursorCount)
{
Locator.tagWithClass("div", "x4-panel")
.withDescendant(Locator.tagWithText("label", "Loading..."))
.waitForElementToDisappear(getDriver(), 15_000);

QCSummaryWebPart qcSummaryWebPart = new PanoramaDashboard(this).getQcSummaryWebPart();
verifyQcSummary(qcSummaryWebPart.getQcSummaryTiles().get(0), null, sampleFileCount, precursorCount);
}
Expand Down
Loading