[appengine-java] Datastore + UI testing

2010-04-02 Thread Adrian B
Is there a way to combine datastore testing with local HTTP requests so that you simultaneously validate the state of the datastore and the way the data is displayed to the user? -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To p

Re: [appengine-java] Datastore + UI testing

2010-04-02 Thread Ikai Lan
Are you looking to test the servlets or to do a full-stack integration test that also involves executing Javascript? I'd recommend Selenium: http://seleniumhq.org/ Just note that the more components you test in a single suite, the more brittle your tests will be. Selenium