Skip to content

Commit

Permalink
compatibility for new progressbar rendering (#1493)
Browse files Browse the repository at this point in the history
previously it was `table`, now it is `a` (theoretically it can also
be `div` but not for the build history.
  • Loading branch information
mawinter69 committed Feb 29, 2024
1 parent 0ac2b66 commit 0197512
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public Set<Build> getBuilds() {
open();

// build history is progressively rendered so wait until that is complete
WebElement progressiveRendering = findIfNotVisible(by.xpath("//table[@tooltip='Computation in progress.']"));
WebElement progressiveRendering = findIfNotVisible(by.xpath("//*[@tooltip='Computation in progress.']"));
waitFor(progressiveRendering).until(we -> !we.isDisplayed());

LinkedHashSet<Build> builds = new LinkedHashSet<Build>();
Expand Down

0 comments on commit 0197512

Please sign in to comment.