What's the preferred way of testing client-side behavior of GWT apps? E.g, say you want to load up the site, click a sign up button, click the submit button, and want to verify that errors are shown. What's the best way to verify that using GWT?
It seems like this might be a case for regular selanium / webdriver based testing, however, that would require either gwt to be started in SDM before the tests are run, or GWT to be compiled for production & copied to the static resources directory, before tests run. Has anyone done something like this before - if so, can you share you setup please?
Thanks.