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
2 changes: 1 addition & 1 deletion src/org/labkey/test/pages/reports/ScriptReportPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ private void _clickReportTab()
scrollToTop(); // Clicking report tab can scroll such that the cursor hovers over and opens the project menu
waitAndClick(Ext4Helper.Locators.tab("Report"));
// Report view should appear quickly
shortWait().until(ExpectedConditions.visibilityOfElementLocated(Locator.tagWithClass("div", "reportView")));
longWait().until(ExpectedConditions.visibilityOfElementLocated(Locator.tagWithClass("div", "reportView")));
// Actual report might take a while to load
_ext4Helper.waitForMaskToDisappear(BaseWebDriverTest.WAIT_FOR_PAGE);
}
Expand Down
2 changes: 1 addition & 1 deletion src/org/labkey/test/tests/AbstractKnitrReportTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ protected void moduleReportDependencies()
clickProject(getProjectName());
_ext4Helper.waitForMaskToDisappear();
waitAndClickAndWait(Locator.linkWithText("kable"));
_ext4Helper.waitForMaskToDisappear(3 * BaseWebDriverTest.WAIT_FOR_JAVASCRIPT);
_ext4Helper.waitForMaskToDisappear(60_000);
waitForElement(Locator.id("mtcars_table"));
}

Expand Down