Re: Using Selenium for GWT tests.

2008-11-19 Thread Arthur Kalmenson
Sorry, I'm not sure. I haven't started using Selenium yet. -- Arthur Kalmenson On Tue, Nov 18, 2008 at 8:34 PM, rex <[EMAIL PROTECTED]> wrote: > > Thnx much Arthur. I have started automating tests with Selenium now. > But, do you know of any reporting tools that we can integrate with > seleniu

Re: Using Selenium for GWT tests.

2008-11-18 Thread rex
Thnx much Arthur. I have started automating tests with Selenium now. But, do you know of any reporting tools that we can integrate with selenium for test report generation. Thnx, Rex On Nov 13, 5:38 am, "Arthur Kalmenson" <[EMAIL PROTECTED]> wrote: > Hi Rex, Selenium is a web UI testing framewo

Re: Using Selenium for GWT tests.

2008-11-13 Thread Arthur Kalmenson
Hi Rex, Selenium is a web UI testing framework that you can integrate with JUnit or TestNG. From there you can do whatever database queries you want, but Selenium is specifically for testing the UI. -- Arthur Kalmenson On Mon, Nov 3, 2008 at 3:05 PM, rex <[EMAIL PROTECTED]> wrote: > > Hi, > >

Re: Using Selenium for GWT tests.

2008-11-03 Thread rex
Hi, I am new to testing a GWT UI. I am also researching Selenium as said above. But can anyone tell if Selenium is able to execute database queries? Any comment is appreciated. Thanks, Rex On Oct 13, 11:06 pm, siva <[EMAIL PROTECTED]> wrote: > Thanks for the information and references to your

Re: Using Selenium for GWT tests.

2008-10-14 Thread siva
Thanks for the information and references to your blogs, Dan. Really helps. If somebody is looking for a way to set ids to GWT widgets UIObject.ensureDebugId(Element, String) is supported starting GWT 1.5 which greatly helps in integration with Selenium using object identifiers. The best part is

Re: Using Selenium for GWT tests.

2008-10-09 Thread dan
Hi Siva, I used Selenium on a project to do integration tests of a GWT application; it worked pretty well. We didn't run the tests in hosted mode, we ran the tests in web mode deployed to our application server. The trick was remembering to use the "waitFor" Selenium commands to avoid tests int

Using Selenium for GWT tests.

2008-10-09 Thread siva
Hi I'm a novice to GWT and evaluating it for one of the new projects. Selenium looks interesting as a testing solution but looks more of a integration test solution. Can we use selenium to unit test our code and have them run in GWT hosted mode ? Are there any good tutorials/articles which talk