Skip to content
Merged
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 @@ -421,14 +421,14 @@ public boolean clickDataLink()
@LogMethod
public PipelineStatusDetailsPage clickRetry()
{
clickAndWait(elementCache().retryButton);
waitAndClickAndWait(Locator.id("retry-btn"));
return new PipelineStatusDetailsPage(getDriver());
}

@LogMethod
public PipelineStatusDetailsPage clickCancel()
{
clickAndWait(elementCache().cancelButton);
waitAndClickAndWait(Locator.id("cancel-btn"));
waitForLogText("Attempting to cancel");
waitForCancelled();
return this;
Expand Down Expand Up @@ -459,8 +459,6 @@ protected class ElementCache extends LabKeyPage.ElementCache
protected final WebElement showGridButton = Locator.lkButton("Show Grid").findWhenNeeded(this);
protected final WebElement showDataButton = Locator.id("show-data-btn").findWhenNeeded(this);
protected final WebElement browseFilesButton = Locator.lkButton("Browse Files").findWhenNeeded(this);
protected final WebElement cancelButton = Locator.id("cancel-btn").findWhenNeeded(this);
protected final WebElement retryButton = Locator.id("retry-btn").findWhenNeeded(this);

protected final WebElement showFullLogLink = Locator.id("show-full-log").findWhenNeeded(this);
protected final WebElement logContainer = Locator.id("log-container").findWhenNeeded(this);
Expand Down