Skip to content

Commit

Permalink
Swap handling action to fire
Browse files Browse the repository at this point in the history
  • Loading branch information
Naton1 committed Jul 30, 2022
1 parent fa4c19a commit c37a4e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions assets/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This directory contains assets displayed in the root README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ void testExecuteRemoteCode(FxRobot fxRobot) throws Exception {
fxRobotPlus.waitUntil(() -> fxRobotPlus.select(treeView, simpleName), 5000);
fxRobotPlus.selectContextMenu(treeView, "Run Code In Package");
fxRobotPlus.waitForStageExists("Remote Code Executor.*");
fxRobotPlus.targetWindow("Remote Code Executor.*").lookup("Execute Code")
.queryButton()
.getOnAction()
.handle(null);
fxRobotPlus.targetWindow("Remote Code Executor.*").lookup("Execute Code").queryButton().fire();

final TextInputControl textArea = fxRobotPlus.targetWindow("Remote Code Executor.*")
.lookup(TextArea.class::isInstance)
Expand Down

0 comments on commit c37a4e4

Please sign in to comment.