thanks,i installed zombie still its not working, if u can provide me the sample code it will great help, below is my code
var Browser = require("zombie");
var assert = require("assert");
//options
var options = {
headers: {
'user-agent': 'Mozilla/5.0 (Windows NT 6.1; rv:29.0) Gecko/20100101 Firefox/29.0'
},
debug: true,
runScripts: true,
maxWait: '20s'
};
// Load the page from localhost
browser = new Browser();
browser.on("error", function(error) {
console.log("Logging error-", error);
});
browser.fill("email","email need to enter");
browser.fill("password","password need to enter");
browser.pressButton("input[name*=accountSignIn]", options, function() {
console.log(browser.html());
});
});