Skip to content

Commit

Permalink
Updates for SampleManager tests (#2171)
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-danield authored Dec 5, 2024
1 parent 33d95b0 commit d3316ee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/org/labkey/test/components/ui/pipeline/ImportsPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ public String getPageHeader()

public QueryGrid getImportsGrid()
{
return elementCache().pipelineJobsGrid();
QueryGrid grid = elementCache().pipelineJobsGrid();
waitFor(grid::isLoaded, "Imports grid did not become active in time.", 2_500);
return grid;
}

@Override
Expand Down

0 comments on commit d3316ee

Please sign in to comment.