I'm part of a group that wants to enable whitebox automation and testing for SWT/JFace UIs. (I.e. JUnit-integrated and refactorable unit testing for...
... One thing to note is that the wait for idle doesn't actually wait for idle, it waits for all events that are currently on the queue to be processed. If...
How do i get to create an image in java as an applet or within a frame. The following code just brings up a frame with no image. Can anyone help? Kev. import...
Tom, As one of the co-authors of Robot, let me say your summary of what's required is pretty good. I do not know any of the SWT specifics to answer your...
Kevin, First - this is way off topic from the purpose of this group. Second - your applet is coded wrong for the icon to show up in the frame. The icon should...
David Herron Mon Jun 2, 2003 12:58 pm ... Thanks! Hopefully better than my previous understanding :-) ... So the question is, what is the meaning of "idle"? ...
... One thing about this method is that I've never understood why it's there. I am only the co-author or Robot, and the other author (who isn't at Sun any...
David Herron 06/02/2003 07:48 PM ... <head explodes/> OK. I've been assuming that _everything_ ended up in the native event queue eventually. Is that why each...
... Glad to oblidge ;-) Whatever you ask Robot to do *does* get into the native system. But it doesn't go to Java's native queue ... except indirectly. Each...
... Well, guys, it's my turn to tell something, then. :) ... I must say: "It depends!". :) I can assure you that during our real tests execution (real tests...
alexandre.iline@...
Jun 3, 2003 1:55 am
270
(head pounding slightly from David's flood of details) ... The first time I saw this was when I was launching appletviewer to control an applet or two. I was...
... This is why the default Robot.waitForIdle might be seen as slightly deficient, since it only waits until all events *currently* on the queue have been...
... You may, as well, simply check it (peekEvent() != null) for as long as it has something and sleep for some time between checks - with the same result. ... ...
alexandre.iline@...
Jun 3, 2003 2:59 am
273
... I've also found this to be "good enough" for most purposes. ... Have you actually run across this in real life? I figure an app that displays an animated...
... Yes, I have. One of NB versions did that. Some kind of events were posted to synchronize filesystem representation. Shura....
alexandre.iline@...
Jun 3, 2003 3:28 am
275
On Monday, Jun 2, 2003, at 18:55 US/Pacific, alexandre.iline@... ... Okay, I was guessing. I've never tried to look - and the kind of app's I work with to...
... Timothy Wall Mon, 2 Jun 2003 22:25:52 -0400 ... <warning: possible intracranial damage :-> Chris Grindstaff 06/03/2003 08:25 AM ... Steve Northover Tue, 3...
Following instructions in the ReadMe, I ran 'ant test' and it was fine, then when running 'ant demo' and recording some actions on the Sample application, then...
Hi friends, Is there any automation tool for testing GUI designed by SWT/JFace component. My application comes as a plugin in Eclipse IDE. It must be able to...
hello all I will feel good to get suggestion from you regarding all the Java GUI Testing Tool. I am currently working on various available Testing Tools...
Pradeep Bojan <pbojan@...> Wed, 4 Jun 2003 12:48:33 +0530 ... The only tool of which I'm aware that can currently do this is IBM Rational XDE Tester ...
Thanks for all incoming messages:) The problem was with Matlab 6.5. I think there is abug with this version of Matlab. I am just writing to log this detail. ...
hello all can somebody pls help me to create a test suite using abbot. 1)I am lunching multiple java applications from scripts.Like.. script1-gui1 script2-gui2...
... JFCUnit doesn't use Robot underneath. Well, that was true at JavaONE 2002 (in march 2002), and I haven't followed their work and have no idea if they've...
From: David Herron [mailto:davidh@...] Instead of using Robot, they advocated directly calling the component methods that would be invoked by the events....
As far as I know, JFCUnit tests can be run using the event queue or the java.awt.Robot (by setting a system property). ... -- "The reasonable man adapts to his...
Aureliano Calvo
acalvo@...
Jun 9, 2003 5:10 pm
290
... set/get ... Nope. I am talking about the component's implementation. You know normally the views or components are composed of other components. What I...
... That's true: if you want to test application only, you only need to test application methods. However, that is what's done by unit testing - that's unit...
Alexandre Iline
alexandre.iline@...
Jun 9, 2003 5:47 pm
292
You might want to port pounder to SWT (http://pounder.sourceforge.net). It solves the unit test for graphical components in a diferent way. I've done some...