Skip to content

Commit

Permalink
attempt to address staleness getting absolutepath
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-chrisj committed Feb 26, 2025
1 parent 448fa1e commit 476e983
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/org/labkey/test/pages/files/WebDavPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ protected class ElementCache extends LabKeyPage<ElementCache>.ElementCache
{
WebElement htmlViewButton = Locator.button("HTML View").findWhenNeeded(this);

WebElement fbDetailsTable = Locator.tagWithClass("table", "fb-details").findWhenNeeded(this);
WebElement fbDetailsTable = Locator.tagWithClass("table", "fb-details").refindWhenNeeded(this);
WebElement webDavUrlElement = Locator.tagWithText("th", "WebDav URL:").followingSibling("td").childTag("a")
.findWhenNeeded(fbDetailsTable);
.refindWhenNeeded(fbDetailsTable);
WebElement absolutePathElement = Locator.tagWithText("th", "Absolute Path:").followingSibling("td")
.findWhenNeeded(fbDetailsTable);
.refindWhenNeeded(fbDetailsTable);
}
}

0 comments on commit 476e983

Please sign in to comment.