From f69bf58f58d1473718491ac37092ef829b7c32fe Mon Sep 17 00:00:00 2001 From: "U-BASIS\\dsmyda" Date: Fri, 22 May 2020 12:55:41 -0400 Subject: [PATCH] Fixed the nightly tests by adding an additional click to the HTML report testing --- .../src/org/sleuthkit/autopsy/testing/AutopsyTestCases.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Testing/src/org/sleuthkit/autopsy/testing/AutopsyTestCases.java b/Testing/src/org/sleuthkit/autopsy/testing/AutopsyTestCases.java index 8ad09e4921..20e82d96e7 100644 --- a/Testing/src/org/sleuthkit/autopsy/testing/AutopsyTestCases.java +++ b/Testing/src/org/sleuthkit/autopsy/testing/AutopsyTestCases.java @@ -385,6 +385,12 @@ public class AutopsyTestCases { listOperator.clickOnItem(0, 1); jbo0.pushNoBlock(); new Timeout("pausing", 2000).sleep(); + + // Next button on the data source selection panel + JButtonOperator dataSourceSelectionPanelNext = new JButtonOperator(reportDialogOperator, "Next"); + dataSourceSelectionPanelNext.pushNoBlock(); + new Timeout("pausing", 2000).sleep(); + JButtonOperator jbo1 = new JButtonOperator(reportDialogOperator, "Finish"); jbo1.pushNoBlock(); JDialog previewDialog = JDialogOperator.waitJDialog("Progress", false, false);