Search the web
Sign In
New User? Sign Up
java-gui-testing · Java GUI Testing
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 33 - 62 of 1683   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
33
Hi. My experience shows that data got by such kind of surveys hardly can be treated as something reliable unless all the participants are asked directly to...
Alexandre Iline
alexandre.iline@...
Send Email
Dec 3, 2002
3:55 am
34
My experience shows that such small surveys aren't worth talking about, but the last option for this one caught my eye. I'd like to know what sort of GUI...
Matt Pekar
mattpekar
Offline Send Email
Dec 3, 2002
4:11 am
35
Hi, Matt. I wonder if you meant "GUI test development" below where you said "GUI development". GUI for a lot of products just tested manually - I now it's a...
Alexandre Iline
alexandre.iline@...
Send Email
Dec 3, 2002
4:28 pm
36
... Hi .. this is my first posting to this group, so in a moment I'll introduce myself. I wanted to correct this ... Robot first appeared to the public in...
David Herron
reikiman
Offline Send Email
Dec 3, 2002
6:39 pm
37
I had just heard of this "Marathon Man" tool and on the "How It Works" page it's clear it's a tool I would immediately dismiss and not use. I want to present ...
David Herron
reikiman
Offline Send Email
Dec 3, 2002
6:55 pm
38
I can see from your point of view the distinction is essential, although automated testing of the native side of things is a whole different ball of wax. From...
Timothy Wall
timothyrwall
Offline Send Email
Dec 3, 2002
7:28 pm
39
David, If you are tasked with "validating" the java platform(i.e. testing the behavior of the core java libraries, not application code) then it is true that...
yahoo@...
c0wb0yd
Offline Send Email
Dec 4, 2002
10:43 am
40
For what its worth, I helped develop a commercial GUI record/playback tool for several dialects of Smalltalk (another OO language). We found that for our...
Michael Silverstein
mksilverstein
Offline Send Email
Dec 4, 2002
11:47 am
41
Marathon originally started as a non-threaded app which notified listeners as you say. We ran into problems. The biggest was with recording. If you operate...
Jeremy Stell-Smith
stellsmi
Offline Send Email
Dec 4, 2002
1:04 pm
42
... being tested, then using Robot, the application will no longer be receiving the events that we're generating. This is not a small issue for us. This is a...
Timothy Wall
timothyrwall
Offline Send Email
Dec 4, 2002
2:40 pm
43
From: Jeremy Stell-Smith [mailto:jeremy.stell-smith@...] Marathon originally started as a non-threaded app which notified listeners as you say....
Michael Silverstein
mksilverstein
Offline Send Email
Dec 4, 2002
3:16 pm
44
... When dealing with an AWT event queue, you can't really avoid threading, since queue operations so often use locks. ... Depends on what you record. If you...
Timothy Wall
timothyrwall
Offline Send Email
Dec 4, 2002
3:20 pm
45
Hi. ... currently, because we can synchronize on the AWT eventqueue, we can post an event, and then wait until exactly after the event has been processed (just...
Alexandre Iline
alexandre.iline@...
Send Email
Dec 4, 2002
5:23 pm
46
Hey Alexandre, ... You're right, which is why we flush the event queue. In our experience this has been good enough. The one exception is windows opening and...
Jeremy Stell-Smith
stellsmi
Offline Send Email
Dec 4, 2002
9:35 pm
47
Okay Timothy, here goes :) ... threading, since queue operations so often use locks. I agree ... that's pretty much what we do - we plug into the event queue...
Jeremy Stell-Smith
stellsmi
Offline Send Email
Dec 4, 2002
10:30 pm
48
... In Pounder, I identify windows by the order of their appearance. First window is 0, second is 1, etc. This scheme doesn't depend on titles, and as far as...
Matt Pekar
mattpekar
Offline Send Email
Dec 5, 2002
1:38 am
49
... All right, that's closer. :) It's not a panacea, though. Additional events posting could be postponed due to listener activity. For example, something...
Alexandre Iline
alexandre.iline@...
Send Email
Dec 5, 2002
2:25 am
50
... tools advantages and drawbacks. btw, this thread is good. I'm learning a lot about how other tools out there are doing things, and that's what this...
Jeremy Stell-Smith
stellsmi
Offline Send Email
Dec 5, 2002
1:42 pm
51
... That was one of the goals, and I'm also happy to see the discussion. Usually a given project is focused towards meeting certain internal goals and can be...
Timothy Wall
timothyrwall
Offline Send Email
Dec 5, 2002
2:20 pm
52
I need to test an applet. It's big with many screens. It uses the Sun Java plug-in and makes heavy use of Swing. It usually is used in Internet Explorer and...
mitchgrrt
Offline Send Email
Dec 6, 2002
1:11 pm
53
Why do you think it won't run outside Explorer? I have been working on a similar applet and, for development, we run it in Intellij's Idea most of the time....
Steve Freeman
smg_freeman
Online Now Send Email
Dec 6, 2002
1:48 pm
54
... Part of the team I work with tests the Java plug-in & JaWS .. We have begun using Jemmy for a lot of the testing. It's working great and the people love...
David Herron
reikiman
Offline Send Email
Dec 6, 2002
4:31 pm
55
Take a look on http://jemmy.netbeans.org/applets.html. Shura....
Alexandre Iline
alexandre.iline@...
Send Email
Dec 6, 2002
5:40 pm
56
Why do you need to test within the Java plug-in? Just make your own AppletContext for testing. By doing it you can "simulate" the browser and efectively test...
Aureliano Calvo
acalvo@...
Send Email
Dec 6, 2002
9:40 pm
57
http://abbot.sourceforge.net/FAQ.html#applets describes applet testing with Abbot, which by default uses appletviewer. The important question, though, is what...
Timothy Wall <twall@...
timothyrwall
Offline Send Email
Dec 8, 2002
6:00 am
58
... This is a non-obvious mapping for me, but after thinking about it for a while, I realized that for any given test, the window appearance order will always...
Timothy Wall <twall@...
timothyrwall
Offline Send Email
Dec 8, 2002
2:24 pm
59
... e > know). It destroys all windows that have appeared during playback or > recording. All windows are killed after recording/playback by > default also....
Timothy Wall <twall@...
timothyrwall
Offline Send Email
Dec 8, 2002
2:29 pm
60
All right then! Here is the same for Jemmy: http://jemmy.netbeans.org/applets.html ... Shura....
Alexandre Iline
alexandre.iline@...
Send Email
Dec 8, 2002
5:04 pm
61
Hi. I'm not sure whether I am in context of you discussion - I apologize if not. The best way to distinguish two frames with the same title is, really, an...
Alexandre Iline
alexandre.iline@...
Send Email
Dec 8, 2002
5:19 pm
62
... Could you describe a situation where dialogs would be optional, and where other invariant behavior would be desired? I hadn't considered it before....
Matt Pekar
mattpekar
Offline Send Email
Dec 8, 2002
7:04 pm
Messages 33 - 62 of 1683   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help