Suggestions for testing a Swing/Java webstart application?

View: New views
7 Messages — Rating Filter:   Alert me  

Suggestions for testing a Swing/Java webstart application?

by Alastair Montgomery-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

Does anyone have a sugguestion of a good tool to automate testing on a
Swing/ Java webstart application?

Our application is both server and client based, the client downloads
using Java Webstart.
So we are looking for a way to record actions from the GUI which we'd
then modify to run as automated tests.

Has anyone done something similar and have pointers to good tools?

TIA
Alastair



Re: Suggestions for testing a Swing/Java webstart application?

by Eric Gavaldo :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message














 


   
           



Hi,

From  a testing point of view what you're going to test is a java
application. Java Webstart is just a deployment method.

so any tool to test java/Swing application will be ok.
It also depends on if you want a free or commercial product.

For a free solution, you may have a look at Marathon/Abbot for
the tests themselves and XStudio ( http://www.xqual.com ) or
Salome TMF for test management.

Eric.


PS: For the test themselves, I would recommend NOT using recorders for
the final scripts. They always provide poor quality code.


Alastair Montgomery wrote:

 
  Hi,
 
Does anyone have a sugguestion of a good tool to automate testing on a
Swing/ Java webstart application?
 
Our application is both server and client based, the client downloads
using Java Webstart.
So we are looking for a way to record actions from the GUI which we'd
then modify to run as automated tests.
 
Has anyone done something similar and have pointers to good tools?
 
TIA
Alastair
 
 
 



--
Eric Gavaldo - QA Manager

885, Av Doc. Julien Lefebvre
06270 Villeneuve Loubet
Office: +33 (0)4 9308 9312
Mobile: +33 (0)6 6511 5914



The information transmitted is intended only
for the person or entity to which it is addressed
and may contain confidential and/or privileged
material. Any review, retransmission, dissemination
or other use of, or taking of any action in reliance
upon, this information by persons or entities other
than the intended recipient is prohibited. If you
received this in error, please contact the sender
and delete the material from any computer.





     

   
    __._,_.___
   
   
             
         
            Messages in this topic           (2)
       
       
         
            Reply           (via web post)
          |
       
          Start a new topic        
           
   
   
   
                Messages  
            |    Files  
            |    Photos  
            |    Links  
       
            |    Polls  
            |    Members  
       
     
   

               
                 
      MARKETPLACE
     
                 
            Earn your degree in as few as 2 years - Advance your career with an AS, BS, MS degree  - College-Finder.net.          
                             
   
     
   
   
   
     
       
      Change settings via the Web  (Yahoo! ID required)
      Change settings via email: Switch delivery to Daily Digest  | Switch format to Traditional  

     
        Visit Your Group
       |
     
        Yahoo! Groups Terms of Use       |
     
        Unsubscribe      
         
   

 
 
 
 
   
   
   
   
              Recent Activity
       
               
       4
      New Members
   
 
           
           
           
           
           
       
           
        Visit Your Group      
     
             
   
             
             
                      Yahoo! Finance  
It's Now Personal  
Guides, news,  
advice & more.                    
                   
                      Need traffic?  
Drive customers  
With search ads  
on Yahoo!                  
                   
                      Dog Groups  
on Yahoo! Groups  
Share pictures &  
stories about dogs.                  
         
   
     
  .
   

__,_._,___
















 

logo.gif (4K) Download Attachment

Re: Suggestions for testing a Swing/Java webstart application?

by Alastair Montgomery-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks I'll have a look at Abbot and Xstudio.



Re: Suggestions for testing a Swing/Java webstart application?

by Alex Ruiz :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

--- In java-gui-testing@..., "Alastair Montgomery"
<a.montgomery@...> wrote:
>
> Thanks I'll have a look at Abbot and Xstudio.
>

Hi Alastair,

Another good alternative for Swing GUI testing is FEST (
http://fest.easytesting.org/swing/ ). Its main features are:

1. Compact API that is easy to read and write (uses fluent interfaces
to create a DSL-oriented API)
2. Supports both JUnit and TestNG
3. Embeds screenshots of failed GUI tests in both JUnit and TestNG
HTML reports

Also, please take a look at the latest SNAPSHOT release (version
0.8-SNAPSHOT) at
http://fest.googlecode.com/svn/trunk/fest/m2/repository/fest/fest-swing/0.8-SNAPSHOT/


The changelog for this release can be found at
http://fest.easytesting.org/swing/changes-report.html

We are in the process of updating the project's documentation before
having a full 0.8 release (next week.) This release adds new features
and is focused on making test troubleshooting easier. For example,
when a GUI component is not found, the ComponentLookupException thrown
shows a list of available components in the hierarchy. Such list uses
indentation to better understand such hierarchy.

I hope that helps.

Best regards,
-Alex.




Re: Re: Suggestions for testing a Swing/Java webstart application?

by Carfield Yim :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Look cool, how about SWT support??

On Dec 28, 2007 10:22 PM, Alex Ruiz <alruiz15@...> wrote:

>
>
>
>
>
>
> --- In java-gui-testing@..., "Alastair Montgomery"
>
>  <a.montgomery@...> wrote:
>  >
>  > Thanks I'll have a look at Abbot and Xstudio.
>  >
>
>  Hi Alastair,
>
>  Another good alternative for Swing GUI testing is FEST (
>  http://fest.easytesting.org/swing/ ). Its main features are:
>
>  1. Compact API that is easy to read and write (uses fluent interfaces
>  to create a DSL-oriented API)
>  2. Supports both JUnit and TestNG
>  3. Embeds screenshots of failed GUI tests in both JUnit and TestNG
>  HTML reports
>
>  Also, please take a look at the latest SNAPSHOT release (version
>  0.8-SNAPSHOT) at
>
> http://fest.googlecode.com/svn/trunk/fest/m2/repository/fest/fest-swing/0.8-SNAPSHOT/
>
>  The changelog for this release can be found at
>  http://fest.easytesting.org/swing/changes-report.html
>
>  We are in the process of updating the project's documentation before
>  having a full 0.8 release (next week.) This release adds new features
>  and is focused on making test troubleshooting easier. For example,
>  when a GUI component is not found, the ComponentLookupException thrown
>  shows a list of available components in the hierarchy. Such list uses
>  indentation to better understand such hierarchy.
>
>  I hope that helps.
>
>  Best regards,
>  -Alex.
>
>
>
>  

Re: Suggestions for testing a Swing/Java webstart application?

by Alex Ruiz :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks! We expect to start looking into SWT in 2008, depending on when
the 1.0 Swing version is released :)

Best regards,
-Alex

--- In java-gui-testing@..., "Carfield Yim" <carfield@...>
wrote:

>
> Look cool, how about SWT support??
>
> On Dec 28, 2007 10:22 PM, Alex Ruiz <alruiz15@...> wrote:
> >
> >
> >
> >
> >
> >
> > --- In java-gui-testing@..., "Alastair Montgomery"
> >
> >  <a.montgomery@> wrote:
> >  >
> >  > Thanks I'll have a look at Abbot and Xstudio.
> >  >
> >
> >  Hi Alastair,
> >
> >  Another good alternative for Swing GUI testing is FEST (
> >  http://fest.easytesting.org/swing/ ). Its main features are:
> >
> >  1. Compact API that is easy to read and write (uses fluent interfaces
> >  to create a DSL-oriented API)
> >  2. Supports both JUnit and TestNG
> >  3. Embeds screenshots of failed GUI tests in both JUnit and TestNG
> >  HTML reports
> >
> >  Also, please take a look at the latest SNAPSHOT release (version
> >  0.8-SNAPSHOT) at
> >
> >
http://fest.googlecode.com/svn/trunk/fest/m2/repository/fest/fest-swing/0.8-SNAPSHOT/
> >
> >  The changelog for this release can be found at
> >  http://fest.easytesting.org/swing/changes-report.html
> >
> >  We are in the process of updating the project's documentation before
> >  having a full 0.8 release (next week.) This release adds new features
> >  and is focused on making test troubleshooting easier. For example,
> >  when a GUI component is not found, the ComponentLookupException
thrown

> >  shows a list of available components in the hierarchy. Such list uses
> >  indentation to better understand such hierarchy.
> >
> >  I hope that helps.
> >
> >  Best regards,
> >  -Alex.
> >
> >
> >
> >
>



Re: Re: Suggestions for testing a Swing/Java webstart application?

by Carfield Yim :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Great, I am not sure if SWT really better than swing or not, but
several big firm make the IT policy of GUI selection with SWT, we have
to use it :-)

On Dec 30, 2007 11:09 PM, Alex Ruiz <alruiz15@...> wrote:

>
>
>
>
>
>
> Thanks! We expect to start looking into SWT in 2008, depending on when
>  the 1.0 Swing version is released :)
>
>  Best regards,
>  -Alex
>
>  --- In java-gui-testing@..., "Carfield Yim" <carfield@...>
>  wrote:
>  >
>  > Look cool, how about SWT support??
>  >
>  > On Dec 28, 2007 10:22 PM, Alex Ruiz <alruiz15@...> wrote:
>  > >
>  > >
>  > >
>  > >
>  > >
>  > >
>  > > --- In java-gui-testing@..., "Alastair Montgomery"
>  > >
>  > > <a.montgomery@> wrote:
>  > > >
>  > > > Thanks I'll have a look at Abbot and Xstudio.
>  > > >
>  > >
>  > > Hi Alastair,
>  > >
>  > > Another good alternative for Swing GUI testing is FEST (
>  > > http://fest.easytesting.org/swing/ ). Its main features are:
>  > >
>  > > 1. Compact API that is easy to read and write (uses fluent interfaces
>  > > to create a DSL-oriented API)
>  > > 2. Supports both JUnit and TestNG
>  > > 3. Embeds screenshots of failed GUI tests in both JUnit and TestNG
>  > > HTML reports
>  > >
>  > > Also, please take a look at the latest SNAPSHOT release (version
>  > > 0.8-SNAPSHOT) at
>  > >
>  > >
>
> http://fest.googlecode.com/svn/trunk/fest/m2/repository/fest/fest-swing/0.8-SNAPSHOT/
>  > >
>  > > The changelog for this release can be found at
>  > > http://fest.easytesting.org/swing/changes-report.html
>  > >
>  > > We are in the process of updating the project's documentation before
>  > > having a full 0.8 release (next week.) This release adds new features
>  > > and is focused on making test troubleshooting easier. For example,
>  > > when a GUI component is not found, the ComponentLookupException
>  thrown
>  > > shows a list of available components in the hierarchy. Such list uses
>  > > indentation to better understand such hierarchy.
>  > >
>  > > I hope that helps.
>  > >
>  > > Best regards,
>  > > -Alex.
>  > >
>  > >
>  > >
>  > >
>  >
>
>