We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
horseman .on("loadFinished", function (status) { console.log("came here in load finished function : " + status); }) .on("error", function () { res.json({message : "invalid url. unable to connect"}); }) .userAgent('Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0') .open(url) .html() .then(function (html) { });
In the above code the on load finished function gets called multiple times
The text was updated successfully, but these errors were encountered:
No branches or pull requests
horseman
.on("loadFinished", function (status) {
console.log("came here in load finished function : " + status);
})
.on("error", function () {
res.json({message : "invalid url. unable to connect"});
})
.userAgent('Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0')
.open(url)
.html()
.then(function (html) {
});
In the above code the on load finished function gets called multiple times
The text was updated successfully, but these errors were encountered: