You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to understand why Robot Framework can't seem to connect when using a JDialog as the top level window but it works perfectly when using a JFrame.
The test:
*** Settings ***Library RemoteSwingLibrary debug=True
*** Test Cases ***My Test Case
Start Application DialogTest java -cp /projects/rdialog DialogTest
Select Dialog Main
Push Button Close
When attempting to run the test it fails with RemoteSwingLibraryTimeoutError: Agent port not received before timeout.
Running the test with Select Window instead of Select Dialog and replacing JDialog with JFrame in the source works. What am I missing here?
The text was updated successfully, but these errors were encountered:
I'm trying to understand why Robot Framework can't seem to connect when using a JDialog as the top level window but it works perfectly when using a JFrame.
The test:
A minimal dialog example:
When attempting to run the test it fails with
RemoteSwingLibraryTimeoutError: Agent port not received before timeout
.Running the test with
Select Window
instead ofSelect Dialog
and replacingJDialog
withJFrame
in the source works. What am I missing here?The text was updated successfully, but these errors were encountered: