Skip to content

Commit 5cf4c97

Browse files
committed
fix: increased timeout during ClearWorkspace
some machines would fail on this step as it is too fast Signed-off-by: Martin Szuc <[email protected]>
1 parent 443fe5f commit 5cf4c97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/redhat/devtools/intellij/commonuitest/fixtures/dialogs/FlatWelcomeFrame.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ private void removeTopProjectFromRecentProjects() {
264264
"robot.click(component, new Point(horizontal_offset, 22), MouseButton.LEFT_BUTTON, 1);");
265265

266266
if (ideaVersion >= 20231) {
267-
ComponentFixture removeDialog = remoteRobot.find(ComponentFixture.class, byXpath(XPathDefinitions.MY_DIALOG), Duration.ofSeconds(2));
267+
ComponentFixture removeDialog = remoteRobot.find(ComponentFixture.class, byXpath(XPathDefinitions.MY_DIALOG), Duration.ofSeconds(10));
268268
removeDialog.findText(ButtonLabels.REMOVE_FROM_LIST_LABEL)
269269
.click();
270270
} else if (ideaVersion >= 20203) { // Code for IntelliJ Idea 2020.3 or newer

0 commit comments

Comments
 (0)