Skip to content

Commit

Permalink
Added "setProjectLocation" in "createQuarkusProject" due to changes i…
Browse files Browse the repository at this point in the history
…n intellij-common-ui-test-library 0.4.2

Signed-off-by: Oleksii Korniienko <[email protected]>
  • Loading branch information
olkornii committed Oct 2, 2024
1 parent e97badc commit 16fa255
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/it/java/org/jboss/tools/intellij/quarkus/tests/BasicTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,30 @@ private void createQuarkusProject(RemoteRobot remoteRobot, String projectName, B

QuarkusNewProjectFinalPage quarkusNewProjectFinalPage = newProjectDialogWizard.find(QuarkusNewProjectFinalPage.class, Duration.ofSeconds(10));
quarkusNewProjectFinalPage.setProjectName(projectName);

System.out.println("===============================================================");
System.out.println(quarkusNewProjectFinalPage.getProjectLocation());
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}

quarkusNewProjectFinalPage.setProjectLocation(CreateCloseUtils.PROJECT_LOCATION);

System.out.println(quarkusNewProjectFinalPage.getProjectLocation());
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
System.out.println(quarkusNewProjectFinalPage.getProjectLocation());
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
System.out.println("===============================================================");
newProjectDialogWizard.finish();

minimizeProjectImportPopupIfItAppears();
Expand Down

0 comments on commit 16fa255

Please sign in to comment.