• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Full stack testing of java web application with selenium

 
Ranch Hand
Posts: 129
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I want to do full stack testing for web application written in java.
My aim is to automate each and every integration of user and check whether is working fine in every layer or not .For e.g.If user create account then i want to confirm whether data is inserted in database ,log in properly written .
I m the only one who is working on this project ,to save the time i just want to write the acceptance test .I want to know how can i follow the Test Driven Development approach in web application .
Thanks
 
Ranch Hand
Posts: 194
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think its often a very bad idea to ONLY use acceptance tests. It won't save you time. I'd highly recommend doing the normal mix of both acceptance tests and unit tests.

I can't offer much advice on selenium; I've been using JWebUnit for my acceptance tests, though I plan to revisit Selenium in the near future.
 
reply
    Bookmark Topic Watch Topic
  • New Topic