Integration tests for GWT

2013-11-10 Thread Ranjith Chungath
Hi,

   I am evaluating different options of writing integration tests for GWT 
applications.

   Looking at options which can test the end-to-end use cases..

   I am aware of the Selenium tests using gwt-debug ids.

   Would like to know about other options also for integration testing of 
large scale GWT applicaitons...

Thanks,
Ranjith

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Integration tests for GWT

2013-11-11 Thread Ed
If you search the forum well, you will find all you need.. Example: 
LINKE

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Integration tests for GWT

2013-11-13 Thread Colin Alworth
Another new toy to propose for saner Selenium testing:
https://github.com/niloc132/gwt-driver

On Monday, November 11, 2013 8:59:49 AM UTC-6, Ed wrote:
>
> If you search the forum well, you will find all you need.. Example: 
> LINKE
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Integration tests for GWT

2013-11-14 Thread David
Seems interesting, anybody already used this for testing ? Can it be easily
extended for custom made widgets ?


On Thu, Nov 14, 2013 at 12:51 AM, Colin Alworth  wrote:

> Another new toy to propose for saner Selenium testing:
> https://github.com/niloc132/gwt-driver
>
> On Monday, November 11, 2013 8:59:49 AM UTC-6, Ed wrote:
>>
>> If you search the forum well, you will find all you need.. Example: 
>> LINKE
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Integration tests for GWT

2013-11-14 Thread Colin Alworth
We're using this at Sencha with pretty good success, though it really is 
designed to be for testing applications, not libraries. I know of a few GXT 
customers who are using it with gxt-driver for widget support, but it is 
still pretty early - either everyone thinks it works out great, or there 
are problems that no one has bothered to tell me...

I wrote gwt-driver to be as general as possible and do all the GWT-specific 
stuff of understanding widgets and talking to webdriver, and then I also 
wrote gxt-driver as a set of GwtWidget objects that are specific to GXT. I 
wouldn't go so far as to say that it is 'easy' to extend for custom made 
widgets, but if you have a grasp on how WebDriver works and are familiar 
with the basic setup of the custom widget it certainly shouldn't be hard.

Both gwt- and gxt-driver are apache licensed, so use and copy freely (and 
of course pull requests are welcome!), as is a sample app/test that I put 
together for demonstration purposes at 
https://github.com/niloc132/gwt-driver-sample. There are a few open issues, 
mostly docs and logging, and I would absolutely welcome new ones, doubly so 
if they come with pull requests and tests!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.