Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
357 views

Querying DOM of a Backbone.js app with Zombie.js

Just trying out Zombie.js for the first time today, and I'm having trouble visiting a page that populates DOM elements via javascript (specifically, a Backbone.js app). As a quick example, I visited ...
3
votes
1answer
361 views

Node.js module that inspects DOM elements

I'm using zombie.js, a headless browser mostly for testing purposes. It creates a browser object that once the function visit() is called allows you to play with the DOM of a given page. However, I ...
2
votes
1answer
156 views

Purely JavaScript Solution for Google Ajax Crawlable Spec

I have a project which is heavily JavaScript based (e.g. node.js, backbone.js, etc.). I'm using hashbang urls like /#!/about and have read the google ajax crawlable spec. I've done a wee bit of ...
2
votes
2answers
707 views

Problems with web site scraping using zombie.js

I need to do some web scraping. After playing around with different web testing framework, of which most where either too slow (Selenium) or too buggy for my needs (env.js), I decided that zombie.js ...
2
votes
1answer
438 views

Zombie error - error in fetching http request

I am using NodeJs and ZombieJS to fetch url requests in a virtual browser environment. I am using the following code: var zombie = require('zombie'), jsdom = require('jsdom'), my_sandbox = ...
2
votes
1answer
695 views

can't exec javascript with zombie.js?

ok, I am a new learner to node.js: when I try to load google.com,and exec the script in the page,like this: var zombie=require("zombie"); browser = new zombie.Browser({ debug: true }) ...
1
vote
1answer
356 views

Node.js and coffeescript — testing app with Mocha and Zombie

I am trying to test a node.js webapp I have started working on with Mocha and Zombie. But there are a few things I still don't understand and would like some help. Please note that I am using express ...
1
vote
3answers
190 views

Node.js Scraping ASU Course

I'm pretty new to Node.js, so apologies in advance if I don't know what I'm talking about. I'm trying to scrape some courses off ASU's course catalog (https://webapp4.asu.edu/catalog/) and have made ...
1
vote
0answers
145 views

zombie.js browser.fire not working with Backbone.Events

The browser.fire method does not seem to trigger event handlers attached through Backbone.Events. (it works fine for other cases such as clicking anchor tags/buttons) See this gist for a test case on ...
1
vote
0answers
357 views

zombie.js and socket.io (node.js)

I would like to test my node.js/socket.io application using the zombie.js headless browser. Unfortunately when the zombie.js app connects to my app it reports a load of connection/disconnection ...
1
vote
2answers
411 views

what browser does zombie.js use?

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 ...
0
votes
1answer
15 views

Digest Auth with Zombie.js

I would like to use Zombie.js to connect to a site that uses Digest Auth. Can I get to the http request headers from the runtime? Or will I need to patch Zombie to add digest auth support?
0
votes
0answers
18 views

Zombiejs jQuery nullTypeError 'compareDocumentPosition'

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 ...
0
votes
1answer
16 views

Zombiejs browser.text method returning entire document

Like it says in the title: zombie = require "zombie" should = require "should" browser = new zombie.Browser(); describe "index", -> describe "herp derp", -> it "should display room ...
0
votes
0answers
29 views

Mocha and ZombieJS

I'm starting a nodejs project and would like to do BDD with Mocha and Zombiejs. Unfortunately I'm new to just about every buzzword in that sentence. I can get Mocha and Zombiejs running tests fine, ...
0
votes
0answers
79 views

Zombie.js, Debugging “Maximum call stack size exceeded” on client-side script

I'm using Zombie.JS headless browser, to test an Asp.Net WebForms app (anyway I think server side technology is not important in this case). When I trigger the post of a form (this triggers many ...
0
votes
1answer
36 views

Check if certain string is on page

How can I check if a page contains a certain piece of text with zombie.js? Do I just check the response and see if it has the string?
0
votes
3answers
75 views

How to activate javascript links with zombie.js

I am trying to get get zombie.js to activate a link that uses javascript. The page I am testing it on is: <html> <body> <div id="test123"> START_TEXT </div> <a ...
0
votes
0answers
115 views

Testing Node.js app with Zombie

I am writing a node.js app in coffee-script using the express framework. After exploring a couple of options I finally decided to use mocha and zombie.js. However, I am having a hard testing the UI. ...
0
votes
1answer
134 views

Zombie.js in node.js fails to scrape certain websites

The simple script below returns a bunch of rubbish. It works for most websites, but not william hill: var Browser = require("zombie"); var assert = require("assert"); // Load the page from localhost ...
0
votes
0answers
106 views

Screen scraping paginated results with zombie / node.js

What is the best method for looping through and scraping a result set of unknown length when using zombie / node.js? Here's my base code: var zombie = require("zombie"); var browser = new ...
0
votes
1answer
115 views

Best practices for testing views in a Django profile app?

I want to write some tests for views in a Django profile app. The views have some smart error-handling logic. e.g. if we try to create a profile, but the profile already exists, then just redirect to ...
0
votes
1answer
159 views

zombie.js visit() calling back too early (using browserify)

Im using zombie to test a backbone app, when I use zombie.visit, zombie calls the vows callback before all scripts on the page are loaded, so my backbone app isn't loaded. However if I wait for the ...
0
votes
0answers
147 views

Zombie.js testing framework, write to a file

I have not found anything yet about being able to write to a file with Zombie.js. I realize that js doesn't normally allow writing to files, but is it possible to combine Node.js with Zombie.js? ...
0
votes
1answer
132 views

Would JSDOM work to setup a projects exuberant ctags?

Looking forward towards excellent javascript ctags support kept me thinking if a project like http://zombie.labnotes.org/ could be used to setup ctags to keep a vim user happy.
0
votes
1answer
176 views

Dumping browser document content using Zombie.js

Using browser.visit, I am fetching the page of a browser as shown in the documentation. According to the browser API, browser.document returns the main window's document. However, I am not sure how to ...
0
votes
0answers
68 views

using dom mutation event in ZombieJS

I am using ZombieJS (A virtual browser environment) to fetch the a web page. I am trying to understand how to retrieve the dom of a web page and store it in-memory using javascript. Then, I would ...
0
votes
1answer
766 views

Load a web page, execute its JavaScript and dump resulting HTML to a file

I need to load a web page, execute its JavaScript (and all js files included with the tags) and dump resulting HTLM to a file. This needs to be done on the server. I have tried node.js with zombie.js ...