Hello VR, Testing UI eventing is something you can do with GWT through the Selenium testing system.
In general, testing in GWT is divided into three main types of testing: 1) GWTTestCase to test UI component functionality and ensure widget layout 2) Regular JUnit test cases to test server-side functionality that may be working with widgets or serializable types transferred over RPC 3) Selenium testing (newly supported in 1.5) for testing UI flow. You would want to check out the third type of testing listed above. GWT 1.5.3 introduces debugIds to our widgets for Selenium support, so that developers can now set debug ids to their widgets by calling ensureDebugId(String id). The id is set to the widget's underlying element, which can then be picked up by other testing tools and frameworks like Selenium which depend on picking up a debugId for a given element in order to run tests against it. Hope that helps, -Sumit Chandel On Mon, Oct 27, 2008 at 2:25 PM, VR <[EMAIL PROTECTED]> wrote: > > I understand that the GWT does not currently support the testing of UI > events...I don't understand why. Is this in the works? This would > be a huge win for me and I suspect others. If it's not in the works, > can anyone point me to an explanation why? > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
