From 64104fd4a3d5199db498c6ee7ad37b9ee5339db9 Mon Sep 17 00:00:00 2001 From: Greg DiCristofaro Date: Sun, 19 Jan 2025 09:25:11 -0500 Subject: [PATCH] update for tests --- Testing/src/org/sleuthkit/autopsy/testing/AutopsyTestCases.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Testing/src/org/sleuthkit/autopsy/testing/AutopsyTestCases.java b/Testing/src/org/sleuthkit/autopsy/testing/AutopsyTestCases.java index b08193f99c..909514b7a8 100644 --- a/Testing/src/org/sleuthkit/autopsy/testing/AutopsyTestCases.java +++ b/Testing/src/org/sleuthkit/autopsy/testing/AutopsyTestCases.java @@ -177,6 +177,7 @@ public class AutopsyTestCases { JToggleButtonOperator jtbo = new JToggleButtonOperator(wo, 0); jtbo.clickMouse(); wo.btNext().clickMouse(); + new Timeout("pausing", 60000).sleep(); JTextFieldOperator jtfo0 = new JTextFieldOperator(wo, 0); String img_path = getEscapedPath(System.getProperty("img_path")); String imageDir = img_path; @@ -213,6 +214,7 @@ public class AutopsyTestCases { JToggleButtonOperator jtbo = new JToggleButtonOperator(wo, 2); jtbo.clickMouse(); wo.btNext().clickMouse(); + new Timeout("pausing", 60000).sleep(); JButtonOperator addButtonOperator = new JButtonOperator(wo, "Add"); addButtonOperator.pushNoBlock(); JFileChooserOperator fileChooserOperator = new JFileChooserOperator();