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 @@ -74,7 +74,7 @@ public ConfigureMetricsUIPage setShowMetricNoOutlier(QCPlotsWebPart.MetricType m

public void waitForMetricToAppear(QCPlotsWebPart.MetricType metric)
{
shortWait().until(ExpectedConditions.visibilityOf(Locator.name(metric.toString()).findElement(getDriver())));
longWait().until(ExpectedConditions.visibilityOf(Locator.name(metric.toString()).findElement(getDriver())));
}

public String getLowerBound(String metric)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void testIntensityAndConfidenceScale()
log("Navigate to sequence coverage map");
navigateToFolder(getProjectName(), CONFIDENCE_SCORE_FOLDER);
waitAndClickAndWait(Locator.linkWithText(CS_SKY_FILE));
clickAndWait(Locator.linkWithText("sp|O13527|YA11B_YEAST"));
clickAndWait(Locator.linkWithText("sp|O13527|YA11B_YEAST"), WAIT_FOR_PAGE);

log("Verifying Intensity values");
SequenceCoverageWebPart sequenceCoverage = new SequenceCoverageWebPart(getDriver());
Expand Down
Loading