From 92fea757404cf29a5ef7a6edbd73d557a2fdc63d Mon Sep 17 00:00:00 2001 From: Attila Vamos Date: Mon, 16 Sep 2024 13:45:43 +0100 Subject: [PATCH] WIP6 Restore WAIT_TIME_THRESHOLD_IN_SECONDS timeout to 20 seconds. Signed-off-by: Attila Vamos --- esp/src/test-ui/tests/framework/config/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp/src/test-ui/tests/framework/config/Config.java b/esp/src/test-ui/tests/framework/config/Config.java index 2d6367e62d8..e97127c4d7e 100644 --- a/esp/src/test-ui/tests/framework/config/Config.java +++ b/esp/src/test-ui/tests/framework/config/Config.java @@ -17,7 +17,7 @@ public class Config { public static final int MALFORMED_TIME_STRING = -1; // this integer is used to denote any malformed time string that we can get from the UI or JSON file. public static final int WAIT_TIME_IN_SECONDS = 1; // this is the default wait time that code uses to load any web element on UI. - public static final int WAIT_TIME_THRESHOLD_IN_SECONDS = 120; // This time is used to stop the code from waiting infinitely. If it is unable to find a web element on the UI, the code stops the search after this time logs an error if the element is not found. + public static final int WAIT_TIME_THRESHOLD_IN_SECONDS = 20; // This time is used to stop the code from waiting infinitely. If it is unable to find a web element on the UI, the code stops the search after this time logs an error if the element is not found. public static final String TEST_DESCRIPTION_TEXT = "Testing Description"; // This is the test description that is used to test the description textbox functionality public static final boolean TEST_DETAIL_PAGE_FIELD_NAMES_ALL = true; // true means the tests for field names on details page will run for all items (whether it is workunits or logical files) and false means it will only run for the first item