Isn't Selenium better than Celerity when it comes to testing web sites cause real browsers like Firefox, Safari, Chrome and Internet Explorer could be used so that we know our website is compatible with each of them.

So if I use Celerity (it's java browser), even if all tests pass, doesn't that mean my website could still be incompatible with our popular web browsers?

I know it's slower, but if we do not take that into account, isn't Celerity more error prone then?

link|improve this question

1  
Reading over Celerity web site it seams like that it is API comparable with Watir (which does use real browsers). So you could create tests that use Celerity for quick running tests (say on commit), and Watir for nightly/weekly slow running tests. – mlk Aug 18 '10 at 13:14
feedback

1 Answer

up vote 2 down vote accepted

If you need speed, use Celerity. If you want tests executed in a real browser, use Selenium or Watir. Celerity emulates browser and Selenium and Watir drive real browsers. If your site is simple, Celerity should work fine. If there is a lot of JavaScript, maybe a real browser should be better.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.