Skip to content

Commit

Permalink
investigating problem with menu on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
nizienko committed Nov 7, 2023
1 parent eb590ef commit 829db0d
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ void createCommandLineProject(final RemoteRobot remoteRobot) {
sharedSteps.closeTipOfTheDay();

final IdeaFrame idea = remoteRobot.find(IdeaFrame.class, ofSeconds(10));
idea.runJs("""
const menuBar = component.getJMenuBar()
menuBar.setVisible(true)
""");
waitFor(ofMinutes(5), () -> !idea.isDumbMode());

step("Create Java file", () -> {
Expand Down

0 comments on commit 829db0d

Please sign in to comment.