Skip to content

Instantly share code, notes, and snippets.

@kosamari
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kosamari/0aab88eec02d64339ed6 to your computer and use it in GitHub Desktop.
Save kosamari/0aab88eec02d64339ed6 to your computer and use it in GitHub Desktop.
allows to call function from inside of page.evaluate in phantomjs-node
/*
allows to call function from inside of page.evaluate in phantomjs-node
*/
page.set('onCallback', function (arg) {
//callback actions
});
//To use callback, use following command in your page.evaluate
window.callPhantom(arg);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment