Greetings, I've been trying to perform a functional test on a very simple JavaFX UI. The test is written in Java and needs to instantiate and show the JavaFX UI to test. It was tricky, but finally I got it working. I'm using FEST-Swing (disclaimer: I'm the creator) to simulate user input and test the UI. Under the covers, FEST uses the AWT Robot, which generates *native* user input events. Clicking on a button works fine on a plain-old Swing UI, but fails miserably on a JavaFX one. I suspect there is a bug in the action listener that JavaFX attaches to the JButtons. It seems that testability was not in the scope of JavaFX.
I documented my experience at http://www.jroller.com/alexRuiz/entry/using_fest_swing_to_discover Any comments/suggestions are appreciated :) Best regards, -Alex --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "The Java Posse" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/javaposse?hl=en -~----------~----~----~----~------~----~------~--~---
