Zombie: Cannot read property 'compareDocumentPosition' of null TypeError: Cannot read property 'compareDocumentPosition' of null

This happens any time I try to load a page that includes jQuery using Zombiejs. This has happened to me on Debian & Windows, with a variety of different pages, using different versions of jQuery and with nothing else on the page.

It seems to have something to do with the way jsDom evaluates jQuery before the page document is ready, but it's pretty far over my head.

Anyone run into this, know a workaround, or have any pointers? Thanks!

UPDATE: This is my test (which actually passes, but running with debug shows the error I mentioned):

zombie = require "zombie"
browser = new zombie.Browser({debug: false})
$ = require "jquery"
require "should"    

app = "http://localhost:3000/"

describe "app", ->
  describe "index", ->
    it "should display correct title", (done) ->
      browser.visit app, (err, browser) ->
        done()

And this is the error:

Zombie: GET http://localhost:3000/js/jquery-1.7.1.js => 200 Zombie: Cannot read property 'compareDocumentPosition' of null TypeError: Cannot read property 'compareDocumentPosition' of null
    at Object.<anonymous> (/js/jquery-1.7.1.js:4807:30)
    at Object.<anonymous> (/js/jquery-1.7.1.js:5301:2)
    at Object.<anonymous> (/js/jquery-1.7.1.js:9266:2)
    at Object._evaluate (/home/dev/Hg/rpg-chat-bdd/node_modules/zombie/lib/zombie/browser.js:136:28)
    in /js/jquery-1.7.1.js

which causes a other errors because '$' is not defined in the rest of my scripts.

This is the HTML of the page I'm testing:

<title>Welcome to Test!</title>

<body>
  <div id="main">
  </div>

  <script type="text/javascript" src="/js/jquery-1.7.1.js"></script>
  <script type="text/javascript" src="/js/application.js"></script>
</body>
link|improve this question

please show us the code you use to load/initialize jquery/zombie. – mindandmedia Feb 24 at 21:54
feedback

1 Answer

up vote 3 down vote accepted
+50

this is a shot in the dark, but i cloned https://github.com/assaf/zombie.git and grepped for compareDocumentPosition. The first line(s) found in the files are like this:

if ( document.documentElement.compareDocumentPosition ) {

Now, document.documentElement usually points to the <html>-tag, are you maybe missing that?

link|improve this answer
1  
Wow. Nice diagnosis from very little info. That appears to have been the problem, thank you! – Joel Feb 24 at 23:33
you are welcome, i am a little proud now. how do i get the bounty? – mindandmedia Feb 24 at 23:35
In 21 hours I'll be able to award it. – Joel Feb 25 at 0:31
Thanks a ton for the bounty. – mindandmedia Feb 28 at 8:42
feedback

Your Answer

 
or
required, but never shown

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