So I came across zombie.js, is this a headless browser?

If so, what browser engine does it use?

Could I rely on it for doing lot of automated tests? Basically, I am restricted to a single server, so I would like to squeeze as many browser tests as possible.

Currently, I am relying on Selenium FirefoxDriver to run my tests. How would zombie.js compare in performance and efficiency to Selenium Webdriver browser instances running? However, there's limitation to how many browser instances I can run in parallel.

link|improve this question

Why don't you run tests with HtmlUnitDriver ? – Mike Kwan Jun 6 '11 at 14:19
have can you put up with htmlunitdriver's javascript handling? Its not accurate for ajax, js heavy web apps. – Kim Jong Woo Jun 6 '11 at 15:52
feedback

2 Answers

up vote 3 down vote accepted

Yes, Zombie is headless.

"Whick browser engine?" - > well, it uses a mixture of technologies:

Performance: should be much faster, according to author's statement: http://labnotes.org/2010/12/30/zombie-js-insanely-fast-full-stack-headless-testing/

link|improve this answer
last time I checked it still had some problems parsing JS....if those things get sorted out then god damn....we open a new era to functional testing....cheaper and faster and lighter. – Kim Jong Woo Sep 8 '11 at 21:28
feedback

is this a headless browser?

I haven't used it, but it certainly looks like a headless browser:

If you're going to write an insanely fast, headless browser, how can you not call it Zombie? Zombie it is.

Zombie.js is a lightweight framework for testing client-side JavaScript code in a simulated environment. No browser required.


what browser engine does it use?

From http://zombie.labnotes.org/guts.html#Grocking:

The DOM implementation is JSDOM, which provides an emulation of DOM Level 3.

link|improve this answer
so does firefox implement a different level dom? – Kim Jong Woo Jun 6 '11 at 15:52
That would depend on the version of Firefox - but in general, no, since DOM Level 3 is the current/latest iteration of the DOM spec. Since Zombie.js also supports HTML5 (through this library), it looks like it has fairly solid support for the newest web technologies. – Matt Ball Jun 6 '11 at 16:20
Wow....zombie.js just seems to good to be true. Of course, I will have to see for myself but if this can replace my current XVNC + HUDSON CI + FIREFOX + WEBDRIVER mix, it would save me lot of time and money. – Kim Jong Woo Jun 7 '11 at 2:54
I can't even install Zombie....some reports of pages not loading at all...this sounds awfully like HTMLUnit but better but not quite accurate as driving the actual browser via Selenium – Kim Jong Woo Jun 9 '11 at 2:25
That's about right, Kim Jong Woo. (I'm the author of the html parsing portion) – Aredridel Feb 8 at 14:44
feedback

Your Answer

 
or
required, but never shown

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