Skip to content

Instantly share code, notes, and snippets.

@dmonllao
Created December 16, 2013 06:14
Show Gist options
  • Save dmonllao/7982994 to your computer and use it in GitHub Desktop.
Save dmonllao/7982994 to your computer and use it in GitHub Desktop.
Moodle-Behat-ZombieJS (ZombieJS script)
var zombie = require("zombie");
zombie.visit("http://moodle.org", {debug: true}, function(err, browser) {
if (err) {
console.log(err.message);
} else {
console.log(browser.html());
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment