Skip to content

Commit 0cdefa0

Browse files
Merge 26.3 to 26.6
2 parents 0e88cbb + fbf47ff commit 0cdefa0

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/org/labkey/test/pages/reports/ScriptReportPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ private void _clickReportTab()
229229
scrollToTop(); // Clicking report tab can scroll such that the cursor hovers over and opens the project menu
230230
waitAndClick(Ext4Helper.Locators.tab("Report"));
231231
// Report view should appear quickly
232-
shortWait().until(ExpectedConditions.visibilityOfElementLocated(Locator.tagWithClass("div", "reportView")));
232+
longWait().until(ExpectedConditions.visibilityOfElementLocated(Locator.tagWithClass("div", "reportView")));
233233
// Actual report might take a while to load
234234
_ext4Helper.waitForMaskToDisappear(BaseWebDriverTest.WAIT_FOR_PAGE);
235235
}

src/org/labkey/test/tests/AbstractKnitrReportTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ protected void moduleReportDependencies()
234234
clickProject(getProjectName());
235235
_ext4Helper.waitForMaskToDisappear();
236236
waitAndClickAndWait(Locator.linkWithText("kable"));
237-
_ext4Helper.waitForMaskToDisappear(3 * BaseWebDriverTest.WAIT_FOR_JAVASCRIPT);
237+
_ext4Helper.waitForMaskToDisappear(60_000);
238238
waitForElement(Locator.id("mtcars_table"));
239239
}
240240

src/org/labkey/test/tests/assay/UploadLargeExcelAssayTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public void testUpload200kRows() throws Exception
118118

119119
// wait for import complete
120120
var assayJobsPage1 = new AssayUploadJobsPage(getDriver());
121-
var pipelineDetailsPage1 = assayJobsPage1.clickJobStatus("200k", 3 * WebDriverWrapper.WAIT_FOR_PAGE);
121+
var pipelineDetailsPage1 = assayJobsPage1.clickJobStatus("200k", 6 * WebDriverWrapper.WAIT_FOR_PAGE);
122122
pipelineDetailsPage1.waitForComplete(12 * WebDriverWrapper.WAIT_FOR_PAGE);
123123

124124
// export assay1 data to excel

0 commit comments

Comments
 (0)