Skip to content

Commit

Permalink
Merge pull request #1046 from turkeylurkey/issue-1045
Browse files Browse the repository at this point in the history
Wait longer for the Search Everywhere menu to populate
  • Loading branch information
turkeylurkey authored Oct 28, 2024
2 parents 231ea9e + 8ba3a3d commit edce25c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1625,7 +1625,7 @@ public static void runActionFromSearchEverywherePanel(RemoteRobot remoteRobot, S
JTextFieldFixture searchField = projectFrame.textField(JTextFieldFixture.Companion.byType(), Duration.ofSeconds(10));
searchField.click();
searchField.setText(action);
TestUtils.sleepAndIgnoreException(1); // allow search time to resolve
TestUtils.sleepAndIgnoreException(10); // allow search time to resolve, 10s for slow machines

// Wait for the desired action to show in the search output frame and click on it.
RepeatUtilsKt.waitFor(Duration.ofSeconds(20),
Expand Down

0 comments on commit edce25c

Please sign in to comment.