Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not erase liberty modules when scanning in the constructor #1225

Closed
wants to merge 12 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add test tracing to UIBotTestUtils.openLibertyToolWindow()
Signed-off-by: Paul Gooderham <[email protected]>
turkeylurkey committed Jan 9, 2025

Verified

This commit was signed with the committer’s verified signature.
williamdes William Desportes
commit 51fc882a1b7ec982b0343a9593717a83c1ef5dff
Original file line number Diff line number Diff line change
@@ -437,6 +437,7 @@ public static void openAndValidateLibertyToolWindow(RemoteRobot remoteRobot, Str
* @param remoteRobot The RemoteRobot instance.
*/
public static void openLibertyToolWindow(RemoteRobot remoteRobot) {
TestUtils.printTrace(TestUtils.TraceSevLevel.INFO, "UIBotTestUtils.openLibertyToolWindow Entry");
int maxRetries = 6;
Exception error = null;
for (int i = 0; i < maxRetries; i++) {
@@ -466,6 +467,7 @@ public static void openLibertyToolWindow(RemoteRobot remoteRobot) {
if (error != null) {
throw new RuntimeException("Unable to open the Liberty tool window.", error);
}
TestUtils.printTrace(TestUtils.TraceSevLevel.INFO, "UIBotTestUtils.openLibertyToolWindow Exit");
}

/**